Show / Hide Table of Contents

Class VmEndpointNatMappingsInterfaceNatMappings

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

Inheritance
System.Object
VmEndpointNatMappingsInterfaceNatMappings
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class VmEndpointNatMappingsInterfaceNatMappings : IDirectResponseSchema

Properties

DrainNatIpPortRanges

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

Declaration
[JsonProperty("drainNatIpPortRanges")]
public virtual IList<string> DrainNatIpPortRanges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

NatIpPortRanges

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

Declaration
[JsonProperty("natIpPortRanges")]
public virtual IList<string> NatIpPortRanges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

NumTotalDrainNatPorts

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.

Declaration
[JsonProperty("numTotalDrainNatPorts")]
public virtual int? NumTotalDrainNatPorts { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

NumTotalNatPorts

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.

Declaration
[JsonProperty("numTotalNatPorts")]
public virtual int? NumTotalNatPorts { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

SourceAliasIpRange

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

Declaration
[JsonProperty("sourceAliasIpRange")]
public virtual string SourceAliasIpRange { get; set; }
Property Value
Type Description
System.String

SourceVirtualIp

Primary IP of the VM for this NIC.

Declaration
[JsonProperty("sourceVirtualIp")]
public virtual string SourceVirtualIp { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top