Class: Google::Apis::CloudtasksV2beta2::ListQueuesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2beta2::ListQueuesResponse
- Defined in:
- generated/google/apis/cloudtasks_v2beta2/classes.rb,
generated/google/apis/cloudtasks_v2beta2/representations.rb,
generated/google/apis/cloudtasks_v2beta2/representations.rb
Overview
Response message for CloudTasks.ListQueues.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#queues ⇒ Array<Google::Apis::CloudtasksV2beta2::Queue>
The list of queues.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListQueuesResponse
constructor
A new instance of ListQueuesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListQueuesResponse
Returns a new instance of ListQueuesResponse
674 675 676 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 674 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve next page of results.
To return the next page of results, call
CloudTasks.ListQueues with this value as the
ListQueuesRequest.page_token.
If the next_page_token is empty, there are no more results.
The page token is valid for only 2 hours.
Corresponds to the JSON property nextPageToken
667 668 669 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 667 def next_page_token @next_page_token end |
#queues ⇒ Array<Google::Apis::CloudtasksV2beta2::Queue>
The list of queues.
Corresponds to the JSON property queues
672 673 674 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 672 def queues @queues end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
679 680 681 682 |
# File 'generated/google/apis/cloudtasks_v2beta2/classes.rb', line 679 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @queues = args[:queues] if args.key?(:queues) end |