Class: Google::Apis::BigqueryreservationV1::ListReservationsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/bigqueryreservation_v1/classes.rb,
generated/google/apis/bigqueryreservation_v1/representations.rb,
generated/google/apis/bigqueryreservation_v1/representations.rb

Overview

The response for ReservationService.ListReservations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListReservationsResponse

Returns a new instance of ListReservationsResponse.



302
303
304
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 302

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


295
296
297
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 295

def next_page_token
  @next_page_token
end

#reservationsArray<Google::Apis::BigqueryreservationV1::Reservation>

List of reservations visible to the user. Corresponds to the JSON property reservations



300
301
302
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 300

def reservations
  @reservations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



307
308
309
310
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 307

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @reservations = args[:reservations] if args.key?(:reservations)
end