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
14941 14942 14943 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 14941 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cidr ⇒ String
IP CIDR address or range.
Corresponds to the JSON property cidr
14919 14920 14921 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 14919 def cidr @cidr end |
#owner ⇒ String
The owner of the internal IP address.
Corresponds to the JSON property owner
14924 14925 14926 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 14924 def owner @owner end |
#purpose ⇒ String
The purpose of the internal IP address if applicable.
Corresponds to the JSON property purpose
14929 14930 14931 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 14929 def purpose @purpose end |
#region ⇒ String
The region of the internal IP address if applicable.
Corresponds to the JSON property region
14934 14935 14936 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 14934 def region @region end |
#type ⇒ String
The type of the internal IP address.
Corresponds to the JSON property type
14939 14940 14941 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 14939 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14946 14947 14948 14949 14950 14951 14952 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 14946 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 |