Class: Google::Apis::ComputeAlpha::AddressesScopedList
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::AddressesScopedList
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
-
#addresses ⇒ Array<Google::Apis::ComputeAlpha::Address>
[Output Only] List of addresses contained in this scope.
-
#warning ⇒ Google::Apis::ComputeAlpha::AddressesScopedList::Warning
[Output Only] Informational warning which replaces the list of addresses when the list is empty.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AddressesScopedList
constructor
A new instance of AddressesScopedList.
-
#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) ⇒ AddressesScopedList
Returns a new instance of AddressesScopedList
919 920 921 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 919 def initialize(**args) update!(**args) end |
Instance Attribute Details
#addresses ⇒ Array<Google::Apis::ComputeAlpha::Address>
[Output Only] List of addresses contained in this scope.
Corresponds to the JSON property addresses
911 912 913 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 911 def addresses @addresses end |
#warning ⇒ Google::Apis::ComputeAlpha::AddressesScopedList::Warning
[Output Only] Informational warning which replaces the list of addresses when
the list is empty.
Corresponds to the JSON property warning
917 918 919 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 917 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
924 925 926 927 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 924 def update!(**args) @addresses = args[:addresses] if args.key?(:addresses) @warning = args[:warning] if args.key?(:warning) end |