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

LoadBalancerInfo

import type { LoadBalancerInfo } from "https://googleapis.deno.dev/v1/networkmanagement:v1.ts";

For display only. Metadata associated with a load balancer.

interface LoadBalancerInfo {
backends?: LoadBalancerBackend[];
backendType?:
| "BACKEND_TYPE_UNSPECIFIED"
| "BACKEND_SERVICE"
| "TARGET_POOL"
| "TARGET_INSTANCE";
backendUri?: string;
healthCheckUri?: string;
loadBalancerType?:
| "LOAD_BALANCER_TYPE_UNSPECIFIED"
| "INTERNAL_TCP_UDP"
| "NETWORK_TCP_UDP"
| "HTTP_PROXY"
| "TCP_PROXY"
| "SSL_PROXY";
}

§Properties

§

Information for the loadbalancer backends.

§
backendType?: "BACKEND_TYPE_UNSPECIFIED" | "BACKEND_SERVICE" | "TARGET_POOL" | "TARGET_INSTANCE"
[src]

Type of load balancer's backend configuration.

§
backendUri?: string
[src]

Backend configuration URI.

§
healthCheckUri?: string
[src]

URI of the health check for the load balancer. Deprecated and no longer populated as different load balancer backends might have different health checks.

§
loadBalancerType?: "LOAD_BALANCER_TYPE_UNSPECIFIED" | "INTERNAL_TCP_UDP" | "NETWORK_TCP_UDP" | "HTTP_PROXY" | "TCP_PROXY" | "SSL_PROXY"
[src]

Type of the load balancer.