Class: Google::Apis::ComputeAlpha::InternalIpAddress
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InternalIpAddress
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#cidr ⇒ String
IP CIDR address or range.
-
#owner ⇒ String
The owner of the internal IP address.
-
#purpose ⇒ String
The purpose of the internal IP address if applicable.
-
#region ⇒ String
The region of the internal IP address if applicable.
-
#type ⇒ String
The type of the internal IP address.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InternalIpAddress
constructor
A new instance of InternalIpAddress.
-
#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) ⇒ InternalIpAddress
Returns a new instance of InternalIpAddress
13378 13379 13380 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13378 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cidr ⇒ String
IP CIDR address or range.
Corresponds to the JSON property cidr
13356 13357 13358 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13356 def cidr @cidr end |
#owner ⇒ String
The owner of the internal IP address.
Corresponds to the JSON property owner
13361 13362 13363 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13361 def owner @owner end |
#purpose ⇒ String
The purpose of the internal IP address if applicable.
Corresponds to the JSON property purpose
13366 13367 13368 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13366 def purpose @purpose end |
#region ⇒ String
The region of the internal IP address if applicable.
Corresponds to the JSON property region
13371 13372 13373 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13371 def region @region end |
#type ⇒ String
The type of the internal IP address.
Corresponds to the JSON property type
13376 13377 13378 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13376 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13383 13384 13385 13386 13387 13388 13389 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 13383 def update!(**args) @cidr = args[:cidr] if args.key?(:cidr) @owner = args[:owner] if args.key?(:owner) @purpose = args[:purpose] if args.key?(:purpose) @region = args[:region] if args.key?(:region) @type = args[:type] if args.key?(:type) end |