Class: Google::Apis::ComputeBeta::VmEndpointNatMappings

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

Overview

Contain information of Nat mapping for a VM endpoint (i.e., NIC).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VmEndpointNatMappings

Returns a new instance of VmEndpointNatMappings.



39835
39836
39837
# File 'lib/google/apis/compute_beta/classes.rb', line 39835

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

Instance Attribute Details

#instance_nameString

Name of the VM instance which the endpoint belongs to Corresponds to the JSON property instanceName

Returns:

  • (String)


39828
39829
39830
# File 'lib/google/apis/compute_beta/classes.rb', line 39828

def instance_name
  @instance_name
end

#interface_nat_mappingsArray<Google::Apis::ComputeBeta::VmEndpointNatMappingsInterfaceNatMappings>

Corresponds to the JSON property interfaceNatMappings



39833
39834
39835
# File 'lib/google/apis/compute_beta/classes.rb', line 39833

def interface_nat_mappings
  @interface_nat_mappings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



39840
39841
39842
39843
# File 'lib/google/apis/compute_beta/classes.rb', line 39840

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