Class: Google::Apis::BigqueryreservationV1beta1::SearchAssignmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryreservationV1beta1::SearchAssignmentsResponse
- 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
-
#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.
401 402 403 |
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 401 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
393 394 395 |
# File 'generated/google/apis/bigqueryreservation_v1beta1/classes.rb', line 393 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
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 |