Class: Google::Apis::ComputeAlpha::RouterNatRuleAction

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RouterNatRuleAction

Returns a new instance of RouterNatRuleAction.



33756
33757
33758
# File 'lib/google/apis/compute_alpha/classes.rb', line 33756

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

Instance Attribute Details

#source_nat_active_ipsArray<String>

A list of URLs of the IP resources used for this NAT rule. These IP addresses must be valid static external IP addresses assigned to the project. Corresponds to the JSON property sourceNatActiveIps

Returns:

  • (Array<String>)


33747
33748
33749
# File 'lib/google/apis/compute_alpha/classes.rb', line 33747

def source_nat_active_ips
  @source_nat_active_ips
end

#source_nat_drain_ipsArray<String>

A list of URLs of the IP resources to be drained. These IPs must be valid static external IPs that have been assigned to the NAT. These IPs should be used for updating/patching a NAT rule only. Corresponds to the JSON property sourceNatDrainIps

Returns:

  • (Array<String>)


33754
33755
33756
# File 'lib/google/apis/compute_alpha/classes.rb', line 33754

def source_nat_drain_ips
  @source_nat_drain_ips
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



33761
33762
33763
33764
# File 'lib/google/apis/compute_alpha/classes.rb', line 33761

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