Show / Hide Table of Contents

Class RoutesConfigDump

Envoy's RDS implementation fills this message with all currently loaded routes, as described by their RouteConfiguration objects. Static routes that are either defined in the bootstrap configuration or defined inline while configuring listeners are separated from those configured dynamically via RDS. Route configuration information can be used to recreate an Envoy configuration by populating all routes as static routes or by returning them in RDS responses.

Inheritance
System.Object
RoutesConfigDump
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 RoutesConfigDump : IDirectResponseSchema

Properties

DynamicRouteConfigs

The dynamically loaded route configs.

Declaration
[JsonProperty("dynamicRouteConfigs")]
public virtual IList<DynamicRouteConfig> DynamicRouteConfigs { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DynamicRouteConfig>

ETag

The ETag of the item.

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

StaticRouteConfigs

The statically loaded route configs.

Declaration
[JsonProperty("staticRouteConfigs")]
public virtual IList<StaticRouteConfig> StaticRouteConfigs { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<StaticRouteConfig>

Implements

IDirectResponseSchema
In This Article
Back to top