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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigqueryreservation_v1/classes.rb,
lib/google/apis/bigqueryreservation_v1/representations.rb,
lib/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.



331
332
333
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 331

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)


324
325
326
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 324

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



329
330
331
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 329

def reservations
  @reservations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



336
337
338
339
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 336

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