Class: Google::Apis::ComputeBeta::RouterStatusNatStatus

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb

Overview

Status of a NAT contained in this router.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RouterStatusNatStatus

Returns a new instance of RouterStatusNatStatus



20775
20776
20777
# File 'generated/google/apis/compute_beta/classes.rb', line 20775

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#auto_allocated_nat_ipsArray<String>

A list of IPs auto-allocated for NAT. Example: ["1.1.1.1", "129.2.16.89"] Corresponds to the JSON property autoAllocatedNatIps

Returns:

  • (Array<String>)


20745
20746
20747
# File 'generated/google/apis/compute_beta/classes.rb', line 20745

def auto_allocated_nat_ips
  @auto_allocated_nat_ips
end

#min_extra_nat_ips_neededFixnum

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. Corresponds to the JSON property minExtraNatIpsNeeded

Returns:

  • (Fixnum)


20752
20753
20754
# File 'generated/google/apis/compute_beta/classes.rb', line 20752

def min_extra_nat_ips_needed
  @min_extra_nat_ips_needed
end

#nameString

Unique name of this NAT. Corresponds to the JSON property name

Returns:

  • (String)


20757
20758
20759
# File 'generated/google/apis/compute_beta/classes.rb', line 20757

def name
  @name
end

#num_vm_endpoints_with_nat_mappingsFixnum

Number of VM endpoints (i.e., Nics) that can use NAT. Corresponds to the JSON property numVmEndpointsWithNatMappings

Returns:

  • (Fixnum)


20762
20763
20764
# File 'generated/google/apis/compute_beta/classes.rb', line 20762

def num_vm_endpoints_with_nat_mappings
  @num_vm_endpoints_with_nat_mappings
end

#user_allocated_nat_ip_resourcesArray<String>

A list of fully qualified URLs of reserved IP address resources. Corresponds to the JSON property userAllocatedNatIpResources

Returns:

  • (Array<String>)


20767
20768
20769
# File 'generated/google/apis/compute_beta/classes.rb', line 20767

def user_allocated_nat_ip_resources
  @user_allocated_nat_ip_resources
end

#user_allocated_nat_ipsArray<String>

A list of IPs user-allocated for NAT. They will be raw IP strings like "179.12. 26.133". Corresponds to the JSON property userAllocatedNatIps

Returns:

  • (Array<String>)


20773
20774
20775
# File 'generated/google/apis/compute_beta/classes.rb', line 20773

def user_allocated_nat_ips
  @user_allocated_nat_ips
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



20780
20781
20782
20783
20784
20785
20786
20787
# File 'generated/google/apis/compute_beta/classes.rb', line 20780

def update!(**args)
  @auto_allocated_nat_ips = args[:auto_allocated_nat_ips] if args.key?(:auto_allocated_nat_ips)
  @min_extra_nat_ips_needed = args[:min_extra_nat_ips_needed] if args.key?(:min_extra_nat_ips_needed)
  @name = args[:name] if args.key?(:name)
  @num_vm_endpoints_with_nat_mappings = args[:num_vm_endpoints_with_nat_mappings] if args.key?(:num_vm_endpoints_with_nat_mappings)
  @user_allocated_nat_ip_resources = args[:user_allocated_nat_ip_resources] if args.key?(:user_allocated_nat_ip_resources)
  @user_allocated_nat_ips = args[:user_allocated_nat_ips] if args.key?(:user_allocated_nat_ips)
end