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

BareMetalLoadBalancerAddressPool

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

Represents an IP pool used by the load balancer.

interface BareMetalLoadBalancerAddressPool {
addresses?: string[];
avoidBuggyIps?: boolean;
manualAssign?: boolean;
pool?: string;
}

§Properties

§
addresses?: string[]
[src]

Required. The addresses that are part of this pool. Each address must be either in the CIDR form (1.2.3.0/24) or range form (1.2.3.1-1.2.3.5).

§
avoidBuggyIps?: boolean
[src]

If true, avoid using IPs ending in .0 or .255. This avoids buggy consumer devices mistakenly dropping IPv4 traffic for those special IP addresses.

§
manualAssign?: boolean
[src]

If true, prevent IP addresses from being automatically assigned.

§
pool?: string
[src]

Required. The name of the address pool.