Class: Google::Apis::BigqueryreservationV1beta1::SearchAssignmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryreservationV1beta1::SearchAssignmentsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigqueryreservation_v1beta1/classes.rb,
lib/google/apis/bigqueryreservation_v1beta1/representations.rb,
lib/google/apis/bigqueryreservation_v1beta1/representations.rb
Overview
The response for ReservationService.SearchAssignments.
Instance Attribute Summary collapse
-
#assignments ⇒ Array<Google::Apis::BigqueryreservationV1beta1::Assignment>
List of assignments visible to the user.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchAssignmentsResponse
constructor
A new instance of SearchAssignmentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchAssignmentsResponse
Returns a new instance of SearchAssignmentsResponse.
426 427 428 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 426 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assignments ⇒ Array<Google::Apis::BigqueryreservationV1beta1::Assignment>
List of assignments visible to the user.
Corresponds to the JSON property assignments
418 419 420 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 418 def assignments @assignments end |
#next_page_token ⇒ String
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
424 425 426 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 424 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
431 432 433 434 |
# File 'lib/google/apis/bigqueryreservation_v1beta1/classes.rb', line 431 def update!(**args) @assignments = args[:assignments] if args.key?(:assignments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |