Class: Google::Apis::BigqueryreservationV1beta1::SearchAssignmentsResponse

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.SearchAssignments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchAssignmentsResponse

Returns a new instance of SearchAssignmentsResponse.



401
402
403
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 401

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



393
394
395
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 393

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)


399
400
401
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 399

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



406
407
408
409
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 406

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