Class: Google::Apis::ComputeBeta::ReservationsScopedList
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ReservationsScopedList
- 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
-
#reservations ⇒ Array<Google::Apis::ComputeBeta::Reservation>
A list of reservations contained in this scope.
-
#warning ⇒ Google::Apis::ComputeBeta::ReservationsScopedList::Warning
Informational warning which replaces the list of reservations when the list is empty.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReservationsScopedList
constructor
A new instance of ReservationsScopedList.
-
#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) ⇒ ReservationsScopedList
Returns a new instance of ReservationsScopedList
22379 22380 22381 |
# File 'generated/google/apis/compute_beta/classes.rb', line 22379 def initialize(**args) update!(**args) end |
Instance Attribute Details
#reservations ⇒ Array<Google::Apis::ComputeBeta::Reservation>
A list of reservations contained in this scope.
Corresponds to the JSON property reservations
22371 22372 22373 |
# File 'generated/google/apis/compute_beta/classes.rb', line 22371 def reservations @reservations end |
#warning ⇒ Google::Apis::ComputeBeta::ReservationsScopedList::Warning
Informational warning which replaces the list of reservations when the list is
empty.
Corresponds to the JSON property warning
22377 22378 22379 |
# File 'generated/google/apis/compute_beta/classes.rb', line 22377 def warning @warning end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22384 22385 22386 22387 |
# File 'generated/google/apis/compute_beta/classes.rb', line 22384 def update!(**args) @reservations = args[:reservations] if args.key?(:reservations) @warning = args[:warning] if args.key?(:warning) end |