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

ClientConfig

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

All xds configs for a particular client.

interface ClientConfig {
clientScope?: string;
genericXdsConfigs?: GenericXdsConfig[];
node?: Node;
xdsConfig?: PerXdsConfig[];
}

§Properties

§
clientScope?: string
[src]

For xDS clients, the scope in which the data is used. For example, gRPC indicates the data plane target or that the data is associated with gRPC server(s).

§
genericXdsConfigs?: GenericXdsConfig[]
[src]

Represents generic xDS config and the exact config structure depends on the type URL (like Cluster if it is CDS)

§
node?: Node
[src]

Node for a particular client.

§
xdsConfig?: PerXdsConfig[]
[src]

This field is deprecated in favor of generic_xds_configs which is much simpler and uniform in structure.