Show / Hide Table of Contents

Class RouterStatusNatStatusNatRuleStatus

Status of a NAT Rule contained in this NAT.

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

Properties

ActiveNatIps

A list of active IPs for NAT. Example: ["1.1.1.1", "179.12.26.133"].

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

DrainNatIps

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

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

MinExtraIpsNeeded

The number of extra IPs to allocate. This will be greater than 0 only if the existing IPs in this NAT Rule are NOT enough to allow all configured VMs to use NAT.

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

NumVmEndpointsWithNatMappings

Number of VM endpoints (i.e., NICs) that have NAT Mappings from this NAT Rule.

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

RuleNumber

Rule number of the 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