Class: Google::Apis::ComputeV1::VmEndpointNatMappings

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

Overview

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

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) ⇒ VmEndpointNatMappings

Returns a new instance of VmEndpointNatMappings.



30119
30120
30121
# File 'generated/google/apis/compute_v1/classes.rb', line 30119

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)


30112
30113
30114
# File 'generated/google/apis/compute_v1/classes.rb', line 30112

def instance_name
  @instance_name
end

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

Corresponds to the JSON property interfaceNatMappings



30117
30118
30119
# File 'generated/google/apis/compute_v1/classes.rb', line 30117

def interface_nat_mappings
  @interface_nat_mappings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30124
30125
30126
30127
# File 'generated/google/apis/compute_v1/classes.rb', line 30124

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