Class: Google::Apis::BigqueryreservationV1::SearchAllAssignmentsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchAllAssignmentsResponse

Returns a new instance of SearchAllAssignmentsResponse.



488
489
490
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 488

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

Instance Attribute Details

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

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



480
481
482
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 480

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)


486
487
488
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 486

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



493
494
495
496
# File 'generated/google/apis/bigqueryreservation_v1/classes.rb', line 493

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