Class: Google::Apis::ComputeBeta::AddressesScopedList
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::AddressesScopedList
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
-
#addresses ⇒ Array<Google::Apis::ComputeBeta::Address>
[Output Only] A list of addresses contained in this scope.
-
#warning ⇒ Google::Apis::ComputeBeta::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.
Constructor Details
#initialize(**args) ⇒ AddressesScopedList
Returns a new instance of AddressesScopedList.
976 977 978 |
# File 'generated/google/apis/compute_beta/classes.rb', line 976 def initialize(**args) update!(**args) end |
Instance Attribute Details
#addresses ⇒ Array<Google::Apis::ComputeBeta::Address>
[Output Only] A list of addresses contained in this scope.
Corresponds to the JSON property addresses
968 969 970 |
# File 'generated/google/apis/compute_beta/classes.rb', line 968 def addresses @addresses end |
#warning ⇒ Google::Apis::ComputeBeta::AddressesScopedList::Warning
[Output Only] Informational warning which replaces the list of addresses when
the list is empty.
Corresponds to the JSON property warning
974 975 976 |
# File 'generated/google/apis/compute_beta/classes.rb', line 974 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
981 982 983 984 |
# File 'generated/google/apis/compute_beta/classes.rb', line 981 def update!(**args) @addresses = args[:addresses] if args.key?(:addresses) @warning = args[:warning] if args.key?(:warning) end |