Class: Google::Apis::ComputeV1::NatIpInfo

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

Overview

Contains NAT IP information of a NAT config (i.e. usage status, mode).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NatIpInfo

Returns a new instance of NatIpInfo.



23171
23172
23173
# File 'lib/google/apis/compute_v1/classes.rb', line 23171

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

Instance Attribute Details

#nat_ip_info_mappingsArray<Google::Apis::ComputeV1::NatIpInfoNatIpInfoMapping>

A list of all NAT IPs assigned to this NAT config. Corresponds to the JSON property natIpInfoMappings



23164
23165
23166
# File 'lib/google/apis/compute_v1/classes.rb', line 23164

def nat_ip_info_mappings
  @nat_ip_info_mappings
end

#nat_nameString

Name of the NAT config which the NAT IP belongs to. Corresponds to the JSON property natName

Returns:

  • (String)


23169
23170
23171
# File 'lib/google/apis/compute_v1/classes.rb', line 23169

def nat_name
  @nat_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



23176
23177
23178
23179
# File 'lib/google/apis/compute_v1/classes.rb', line 23176

def update!(**args)
  @nat_ip_info_mappings = args[:nat_ip_info_mappings] if args.key?(:nat_ip_info_mappings)
  @nat_name = args[:nat_name] if args.key?(:nat_name)
end