Class: Google::Apis::ComputeV1::RouterNatSubnetworkToNat

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

Defines the IP ranges that want to use NAT for a subnetwork.

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

Returns a new instance of RouterNatSubnetworkToNat



17722
17723
17724
# File 'generated/google/apis/compute_v1/classes.rb', line 17722

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

Instance Attribute Details

#nameString

URL for the subnetwork resource to use NAT. Corresponds to the JSON property name

Returns:

  • (String)


17705
17706
17707
# File 'generated/google/apis/compute_v1/classes.rb', line 17705

def name
  @name
end

#secondary_ip_range_namesArray<String>

A list of the secondary ranges of the Subnetwork that are allowed to use NAT. This can be populated only if "LIST_OF_SECONDARY_IP_RANGES" is one of the values in source_ip_ranges_to_nat. Corresponds to the JSON property secondaryIpRangeNames

Returns:

  • (Array<String>)


17712
17713
17714
# File 'generated/google/apis/compute_v1/classes.rb', line 17712

def secondary_ip_range_names
  @secondary_ip_range_names
end

#source_ip_ranges_to_natArray<String>

Specify the options for NAT ranges in the Subnetwork. All usages of single value are valid except NAT_IP_RANGE_OPTION_UNSPECIFIED. The only valid option with multiple values is: ["PRIMARY_IP_RANGE", "LIST_OF_SECONDARY_IP_RANGES"] Default: [ALL_IP_RANGES] Corresponds to the JSON property sourceIpRangesToNat

Returns:

  • (Array<String>)


17720
17721
17722
# File 'generated/google/apis/compute_v1/classes.rb', line 17720

def source_ip_ranges_to_nat
  @source_ip_ranges_to_nat
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



17727
17728
17729
17730
17731
# File 'generated/google/apis/compute_v1/classes.rb', line 17727

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @secondary_ip_range_names = args[:secondary_ip_range_names] if args.key?(:secondary_ip_range_names)
  @source_ip_ranges_to_nat = args[:source_ip_ranges_to_nat] if args.key?(:source_ip_ranges_to_nat)
end