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

VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings

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

Contains information of NAT Mappings provided by a NAT Rule.

interface VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings {
drainNatIpPortRanges?: string[];
natIpPortRanges?: string[];
numTotalDrainNatPorts?: number;
numTotalNatPorts?: number;
ruleNumber?: number;
}

§Properties

§
drainNatIpPortRanges?: string[]
[src]

List of all drain IP:port-range mappings assigned to this interface by this rule. These ranges are inclusive, that is, both the first and the last ports can be used for NAT. Example: ["2.2.2.2:12345-12355", "1.1.1.1:2234-2234"].

§
natIpPortRanges?: string[]
[src]

A list of all IP:port-range mappings assigned to this interface by this rule. These ranges are inclusive, that is, both the first and the last ports can be used for NAT. Example: ["2.2.2.2:12345-12355", "1.1.1.1:2234-2234"].

§
numTotalDrainNatPorts?: number
[src]

Total number of drain ports across all NAT IPs allocated to this interface by this rule. It equals the aggregated port number in the field drain_nat_ip_port_ranges.

§
numTotalNatPorts?: number
[src]

Total number of ports across all NAT IPs allocated to this interface by this rule. It equals the aggregated port number in the field nat_ip_port_ranges.

§
ruleNumber?: number
[src]

Rule number of the NAT Rule.