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
16184 16185 16186 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16184 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cidr ⇒ String
IP CIDR address or range.
Corresponds to the JSON property cidr
16162 16163 16164 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16162 def cidr @cidr end |
#owner ⇒ String
The owner of the internal IP address.
Corresponds to the JSON property owner
16167 16168 16169 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16167 def owner @owner end |
#purpose ⇒ String
The purpose of the internal IP address if applicable.
Corresponds to the JSON property purpose
16172 16173 16174 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16172 def purpose @purpose end |
#region ⇒ String
The region of the internal IP address if applicable.
Corresponds to the JSON property region
16177 16178 16179 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16177 def region @region end |
#type ⇒ String
The type of the internal IP address.
Corresponds to the JSON property type
16182 16183 16184 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16182 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16189 16190 16191 16192 16193 16194 16195 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16189 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 |