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
System.Object
ClustersConfigDump
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.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
System.Collections.Generic.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
System.Collections.Generic.IList<DynamicCluster>

ETag

The ETag of the item.

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

StaticClusters

The statically loaded cluster configs.

Declaration
[JsonProperty("staticClusters")]
public virtual IList<StaticCluster> StaticClusters { get; set; }
Property Value
Type Description
System.Collections.Generic.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
System.String

Implements

IDirectResponseSchema
In This Article
Back to top