Show / Hide Table of Contents

Class RouterStatusNatStatus

Status of a NAT contained in this router.

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

Properties

AutoAllocatedNatIps

A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"]

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

DrainAutoAllocatedNatIps

A list of IPs auto-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].

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

DrainUserAllocatedNatIps

A list of IPs user-allocated for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.133"].

Declaration
[JsonProperty("drainUserAllocatedNatIps")]
public virtual IList<string> DrainUserAllocatedNatIps { 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

MinExtraNatIpsNeeded

The number of extra IPs to allocate. This will be greater than 0 only if user-specified IPs are NOT enough to allow all configured VMs to use NAT. This value is meaningful only when auto-allocation of NAT IPs is not used.

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

Name

Unique name of this NAT.

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

NumVmEndpointsWithNatMappings

Number of VM endpoints (i.e., Nics) that can use NAT.

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

UserAllocatedNatIpResources

A list of fully qualified URLs of reserved IP address resources.

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

UserAllocatedNatIps

A list of IPs user-allocated for NAT. They will be raw IP strings like "179.12.26.133".

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

Implements

IDirectResponseSchema
In This Article
Back to top