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

RoutesConfigDump

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

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.

interface RoutesConfigDump {
dynamicRouteConfigs?: DynamicRouteConfig[];
staticRouteConfigs?: StaticRouteConfig[];
}

§Properties

§
dynamicRouteConfigs?: DynamicRouteConfig[]
[src]

The dynamically loaded route configs.

§
staticRouteConfigs?: StaticRouteConfig[]
[src]

The statically loaded route configs.