Class: Google::Apis::ComputeAlpha::InternalIpAddress
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InternalIpAddress
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- 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.
Constructor Details
#initialize(**args) ⇒ InternalIpAddress
Returns a new instance of InternalIpAddress.
18853 18854 18855 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18853 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cidr ⇒ String
IP CIDR address or range.
Corresponds to the JSON property cidr
18831 18832 18833 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18831 def cidr @cidr end |
#owner ⇒ String
The owner of the internal IP address.
Corresponds to the JSON property owner
18836 18837 18838 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18836 def owner @owner end |
#purpose ⇒ String
The purpose of the internal IP address if applicable.
Corresponds to the JSON property purpose
18841 18842 18843 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18841 def purpose @purpose end |
#region ⇒ String
The region of the internal IP address if applicable.
Corresponds to the JSON property region
18846 18847 18848 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18846 def region @region end |
#type ⇒ String
The type of the internal IP address.
Corresponds to the JSON property type
18851 18852 18853 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18851 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18858 18859 18860 18861 18862 18863 18864 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18858 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 |