Class: Google::Apis::ComputeAlpha::InternalIpAddress
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InternalIpAddress
- 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
-
#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.
Constructor Details
#initialize(**args) ⇒ InternalIpAddress
Returns a new instance of InternalIpAddress.
37346 37347 37348 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 37346 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cidr ⇒ String
IP CIDR address or range.
Corresponds to the JSON property cidr
37324 37325 37326 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 37324 def cidr @cidr end |
#owner ⇒ String
The owner of the internal IP address.
Corresponds to the JSON property owner
37329 37330 37331 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 37329 def owner @owner end |
#purpose ⇒ String
The purpose of the internal IP address if applicable.
Corresponds to the JSON property purpose
37334 37335 37336 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 37334 def purpose @purpose end |
#region ⇒ String
The region of the internal IP address if applicable.
Corresponds to the JSON property region
37339 37340 37341 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 37339 def region @region end |
#type ⇒ String
The type of the internal IP address.
Corresponds to the JSON property type
37344 37345 37346 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 37344 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
37351 37352 37353 37354 37355 37356 37357 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 37351 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 |