Show / Hide Table of Contents

Class VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings

Contains information of NAT Mappings provided by a NAT Rule.

Inheritance
System.Object
VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings
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 VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings : IDirectResponseSchema

Properties

DrainNatIpPortRanges

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

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

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 by this rule. It equals 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 by this rule. It equals 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>

RuleNumber

Rule number of the NAT Rule.

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

Implements

IDirectResponseSchema
In This Article
Back to top