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 {
drainNatIpPortRanges?: string[];
natIpPortRanges?: string[];
numTotalDrainNatPorts?: number;
numTotalNatPorts?: number;
sourceAliasIpRange?: string;
sourceVirtualIp?: string;
}

§Properties

§
drainNatIpPortRanges?: string[]
[src]

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"].

§
natIpPortRanges?: string[]
[src]

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"].

§
numTotalDrainNatPorts?: number
[src]

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.

§
numTotalNatPorts?: number
[src]

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.

§

Information about mappings provided by rules in this NAT.

§
sourceAliasIpRange?: string
[src]

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".

§
sourceVirtualIp?: string
[src]

Primary IP of the VM for this NIC.