Show / Hide Table of Contents

Class ClustersConfigDump

Envoy's cluster manager fills this message with all currently known clusters. Cluster configuration information can be used to recreate an Envoy configuration by populating all clusters as static clusters or by returning them in a CDS response.

Inheritance
object
ClustersConfigDump
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.TrafficDirectorService.v2.Data
Assembly: Google.Apis.TrafficDirectorService.v2.dll
Syntax
public class ClustersConfigDump : IDirectResponseSchema

Properties

DynamicActiveClusters

The dynamically loaded active clusters. These are clusters that are available to service data plane traffic.

Declaration
[JsonProperty("dynamicActiveClusters")]
public virtual IList<DynamicCluster> DynamicActiveClusters { get; set; }
Property Value
Type Description
IList<DynamicCluster>

DynamicWarmingClusters

The dynamically loaded warming clusters. These are clusters that are currently undergoing warming in preparation to service data plane traffic. Note that if attempting to recreate an Envoy configuration from a configuration dump, the warming clusters should generally be discarded.

Declaration
[JsonProperty("dynamicWarmingClusters")]
public virtual IList<DynamicCluster> DynamicWarmingClusters { get; set; }
Property Value
Type Description
IList<DynamicCluster>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

StaticClusters

The statically loaded cluster configs.

Declaration
[JsonProperty("staticClusters")]
public virtual IList<StaticCluster> StaticClusters { get; set; }
Property Value
Type Description
IList<StaticCluster>

VersionInfo

This is the :ref:version_info in the last processed CDS discovery response. If there are only static bootstrap clusters, this field will be "".

Declaration
[JsonProperty("versionInfo")]
public virtual string VersionInfo { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX