Class: Google::Apis::ComputeV1::VmEndpointNatMappings
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::VmEndpointNatMappings
- 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_name ⇒ String
Name of the VM instance which the endpoint belongs to Corresponds to the JSON property
instanceName
. -
#interface_nat_mappings ⇒ Array<Google::Apis::ComputeV1::VmEndpointNatMappingsInterfaceNatMappings>
Corresponds to the JSON property
interfaceNatMappings
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VmEndpointNatMappings
constructor
A new instance of VmEndpointNatMappings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ VmEndpointNatMappings
Returns a new instance of VmEndpointNatMappings
28698 28699 28700 |
# File 'generated/google/apis/compute_v1/classes.rb', line 28698 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance_name ⇒ String
Name of the VM instance which the endpoint belongs to
Corresponds to the JSON property instanceName
28691 28692 28693 |
# File 'generated/google/apis/compute_v1/classes.rb', line 28691 def instance_name @instance_name end |
#interface_nat_mappings ⇒ Array<Google::Apis::ComputeV1::VmEndpointNatMappingsInterfaceNatMappings>
Corresponds to the JSON property interfaceNatMappings
28696 28697 28698 |
# File 'generated/google/apis/compute_v1/classes.rb', line 28696 def interface_nat_mappings @interface_nat_mappings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28703 28704 28705 28706 |
# File 'generated/google/apis/compute_v1/classes.rb', line 28703 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 |