Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ScopedRoutesConfigDump

import type { ScopedRoutesConfigDump } from "https://googleapis.deno.dev/v1/trafficdirector:v3.ts";

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.

interface ScopedRoutesConfigDump {
dynamicScopedRouteConfigs?: DynamicScopedRouteConfigs[];
inlineScopedRouteConfigs?: InlineScopedRouteConfigs[];
}

§Properties

§
dynamicScopedRouteConfigs?: DynamicScopedRouteConfigs[]
[src]

The dynamically loaded scoped route configs.

§
inlineScopedRouteConfigs?: InlineScopedRouteConfigs[]
[src]

The statically loaded scoped route configs.