Class: Google::Apis::ComputeAlpha::RouterStatusNatStatusNatRuleStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::RouterStatusNatStatusNatRuleStatus
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Overview
Status of a NAT Rule contained in this NAT.
Instance Attribute Summary collapse
-
#active_nat_ips ⇒ Array<String>
A list of active IPs for NAT.
-
#drain_nat_ips ⇒ Array<String>
A list of IPs for NAT that are in drain mode.
-
#min_extra_ips_needed ⇒ Fixnum
The number of extra IPs to allocate.
-
#num_vm_endpoints_with_nat_mappings ⇒ Fixnum
Number of VM endpoints (i.e., NICs) that have NAT Mappings from this NAT Rule.
-
#rule_number ⇒ Fixnum
Rule number of the rule.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RouterStatusNatStatusNatRuleStatus
constructor
A new instance of RouterStatusNatStatusNatRuleStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RouterStatusNatStatusNatRuleStatus
Returns a new instance of RouterStatusNatStatusNatRuleStatus.
32467 32468 32469 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32467 def initialize(**args) update!(**args) end |
Instance Attribute Details
#active_nat_ips ⇒ Array<String>
A list of active IPs for NAT. Example: ["1.1.1.1", "179.12.26.133"].
Corresponds to the JSON property activeNatIps
32442 32443 32444 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32442 def active_nat_ips @active_nat_ips end |
#drain_nat_ips ⇒ Array<String>
A list of IPs for NAT that are in drain mode. Example: ["1.1.1.1", "179.12.26.
133"].
Corresponds to the JSON property drainNatIps
32448 32449 32450 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32448 def drain_nat_ips @drain_nat_ips end |
#min_extra_ips_needed ⇒ Fixnum
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.
Corresponds to the JSON property minExtraIpsNeeded
32455 32456 32457 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32455 def min_extra_ips_needed @min_extra_ips_needed end |
#num_vm_endpoints_with_nat_mappings ⇒ Fixnum
Number of VM endpoints (i.e., NICs) that have NAT Mappings from this NAT Rule.
Corresponds to the JSON property numVmEndpointsWithNatMappings
32460 32461 32462 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32460 def num_vm_endpoints_with_nat_mappings @num_vm_endpoints_with_nat_mappings end |
#rule_number ⇒ Fixnum
Rule number of the rule.
Corresponds to the JSON property ruleNumber
32465 32466 32467 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32465 def rule_number @rule_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
32472 32473 32474 32475 32476 32477 32478 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 32472 def update!(**args) @active_nat_ips = args[:active_nat_ips] if args.key?(:active_nat_ips) @drain_nat_ips = args[:drain_nat_ips] if args.key?(:drain_nat_ips) @min_extra_ips_needed = args[:min_extra_ips_needed] if args.key?(:min_extra_ips_needed) @num_vm_endpoints_with_nat_mappings = args[:num_vm_endpoints_with_nat_mappings] if args.key?(:num_vm_endpoints_with_nat_mappings) @rule_number = args[:rule_number] if args.key?(:rule_number) end |