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

ClustersConfigDump

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

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.

interface ClustersConfigDump {
dynamicActiveClusters?: DynamicCluster[];
dynamicWarmingClusters?: DynamicCluster[];
staticClusters?: StaticCluster[];
versionInfo?: string;
}

§Properties

§
dynamicActiveClusters?: DynamicCluster[]
[src]

The dynamically loaded active clusters. These are clusters that are available to service data plane traffic.

§
dynamicWarmingClusters?: DynamicCluster[]
[src]

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.

§
staticClusters?: StaticCluster[]
[src]

The statically loaded cluster configs.

§
versionInfo?: string
[src]

This is the :ref:version_info in the last processed CDS discovery response. If there are only static bootstrap clusters, this field will be "".