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

VmEndpointNatMappingsInterfaceNatMappings

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

Contain information of Nat mapping for an interface of this endpoint.

interface VmEndpointNatMappingsInterfaceNatMappings {
readonly drainNatIpPortRanges?: string[];
readonly natIpPortRanges?: string[];
readonly numTotalDrainNatPorts?: number;
readonly numTotalNatPorts?: number;
readonly sourceAliasIpRange?: string;
readonly sourceVirtualIp?: string;
}

§Properties

§
readonly drainNatIpPortRanges?: string[]
[src]

Output only. List of all drain IP:port-range mappings assigned to this interface. 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"].

§
readonly natIpPortRanges?: string[]
[src]

Output only. A list of all IP:port-range mappings assigned to this interface. 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"].

§
readonly numTotalDrainNatPorts?: number
[src]

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

§
readonly numTotalNatPorts?: number
[src]

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

§

Output only. Information about mappings provided by rules in this NAT.

§
readonly sourceAliasIpRange?: string
[src]

Output only. Alias IP range for this interface endpoint. It will be a private (RFC 1918) IP range. Examples: "10.33.4.55/32", or "192.168.5.0/24".

§
readonly sourceVirtualIp?: string
[src]

Output only. Primary IP of the VM for this NIC.