Class: Google::Apis::BigqueryreservationV1beta1::ListAssignmentsResponse

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

Overview

The response for ReservationService.ListAssignments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAssignmentsResponse

Returns a new instance of ListAssignmentsResponse.



225
226
227
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 225

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

Instance Attribute Details

#assignmentsArray<Google::Apis::BigqueryreservationV1beta1::Assignment>

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



217
218
219
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 217

def assignments
  @assignments
end

#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)


223
224
225
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 223

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



230
231
232
233
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 230

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