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

RouterStatusNatStatusNatRuleStatus

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

Status of a NAT Rule contained in this NAT.

interface RouterStatusNatStatusNatRuleStatus {
readonly activeNatIps?: string[];
readonly drainNatIps?: string[];
readonly minExtraIpsNeeded?: number;
readonly numVmEndpointsWithNatMappings?: number;
readonly ruleNumber?: number;
}

§Properties

§
readonly activeNatIps?: string[]
[src]

Output only. A list of active IPs for NAT. Example: ["1.1.1.1", "179.12.26.133"].

§
readonly drainNatIps?: string[]
[src]

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

§
readonly minExtraIpsNeeded?: number
[src]

Output only. The number of extra IPs to allocate. This will be greater than 0 only if the existing IPs in this NAT Rule are NOT enough to allow all configured VMs to use NAT.

§
readonly numVmEndpointsWithNatMappings?: number
[src]

Output only. Number of VM endpoints (i.e., NICs) that have NAT Mappings from this NAT Rule.

§
readonly ruleNumber?: number
[src]

Output only. Rule number of the rule.