class Google::Apis::TrafficdirectorV2::ScopedRoutesConfigDump

Envoy's scoped RDS implementation fills this message with all currently loaded route configuration scopes (defined via ScopedRouteConfigurationsSet protos). This message lists both the scopes defined inline with the higher order object (i.e., the HttpConnectionManager) and the dynamically obtained scopes via the SRDS API.

Attributes

dynamic_scoped_route_configs[RW]

The dynamically loaded scoped route configs. Corresponds to the JSON property `dynamicScopedRouteConfigs` @return [Array<Google::Apis::TrafficdirectorV2::DynamicScopedRouteConfigs>]

inline_scoped_route_configs[RW]

The statically loaded scoped route configs. Corresponds to the JSON property `inlineScopedRouteConfigs` @return [Array<Google::Apis::TrafficdirectorV2::InlineScopedRouteConfigs>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/trafficdirector_v2/classes.rb, line 973
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/trafficdirector_v2/classes.rb, line 978
def update!(**args)
  @dynamic_scoped_route_configs = args[:dynamic_scoped_route_configs] if args.key?(:dynamic_scoped_route_configs)
  @inline_scoped_route_configs = args[:inline_scoped_route_configs] if args.key?(:inline_scoped_route_configs)
end