Class: Google::Apis::ComputeV1::NatIpInfoNatIpInfoMapping
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::NatIpInfoNatIpInfoMapping
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Overview
Contains information of a NAT IP.
Instance Attribute Summary collapse
-
#mode ⇒ String
Specifies whether NAT IP is auto or manual.
-
#nat_ip ⇒ String
NAT IP address.
-
#usage ⇒ String
Specifies whether NAT IP is currently serving at least one endpoint or not.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NatIpInfoNatIpInfoMapping
constructor
A new instance of NatIpInfoNatIpInfoMapping.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NatIpInfoNatIpInfoMapping
Returns a new instance of NatIpInfoNatIpInfoMapping.
24011 24012 24013 |
# File 'lib/google/apis/compute_v1/classes.rb', line 24011 def initialize(**args) update!(**args) end |
Instance Attribute Details
#mode ⇒ String
Specifies whether NAT IP is auto or manual.
Corresponds to the JSON property mode
23999 24000 24001 |
# File 'lib/google/apis/compute_v1/classes.rb', line 23999 def mode @mode end |
#nat_ip ⇒ String
NAT IP address. For example: 203.0.113.11.
Corresponds to the JSON property natIp
24004 24005 24006 |
# File 'lib/google/apis/compute_v1/classes.rb', line 24004 def nat_ip @nat_ip end |
#usage ⇒ String
Specifies whether NAT IP is currently serving at least one endpoint or not.
Corresponds to the JSON property usage
24009 24010 24011 |
# File 'lib/google/apis/compute_v1/classes.rb', line 24009 def usage @usage end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
24016 24017 24018 24019 24020 |
# File 'lib/google/apis/compute_v1/classes.rb', line 24016 def update!(**args) @mode = args[:mode] if args.key?(:mode) @nat_ip = args[:nat_ip] if args.key?(:nat_ip) @usage = args[:usage] if args.key?(:usage) end |