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

RouterStatusNatStatus

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

Status of a NAT contained in this router.

interface RouterStatusNatStatus {
readonly autoAllocatedNatIps?: string[];
readonly drainAutoAllocatedNatIps?: string[];
readonly drainUserAllocatedNatIps?: string[];
readonly minExtraNatIpsNeeded?: number;
readonly name?: string;
readonly numVmEndpointsWithNatMappings?: number;
readonly userAllocatedNatIpResources?: string[];
readonly userAllocatedNatIps?: string[];
}

§Properties

§
readonly autoAllocatedNatIps?: string[]
[src]

Output only. A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]

§
readonly drainAutoAllocatedNatIps?: string[]
[src]

Output only. A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].

§
readonly drainUserAllocatedNatIps?: string[]
[src]

Output only. A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].

§
readonly minExtraNatIpsNeeded?: number
[src]

Output only. The number of extra IPs to allocate. This will be greater than 0 only if user-specified IPs are NOT enough to allow all configured VMs to use NAT. This value is meaningful only when auto-allocation of NAT IPs is not used.

§
readonly name?: string
[src]

Output only. Unique name of this NAT.

§
readonly numVmEndpointsWithNatMappings?: number
[src]

Output only. Number of VM endpoints (i.e., Nics) that can use NAT.

§

Status of rules in this NAT.

§
readonly userAllocatedNatIpResources?: string[]
[src]

Output only. A list of fully qualified URLs of reserved IP address resources.

§
readonly userAllocatedNatIps?: string[]
[src]

Output only. A list of IPs user-allocated for NAT. They will be raw IP strings like "179.12.26.133".