Class: Google::Apis::CloudtasksV2::ListQueuesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2::ListQueuesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudtasks_v2/classes.rb,
lib/google/apis/cloudtasks_v2/representations.rb,
lib/google/apis/cloudtasks_v2/representations.rb
Overview
Response message for ListQueues.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#queues ⇒ Array<Google::Apis::CloudtasksV2::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.
Constructor Details
#initialize(**args) ⇒ ListQueuesResponse
Returns a new instance of ListQueuesResponse.
888 889 890 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 888 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 ListQueues with this value as the 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
881 882 883 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 881 def next_page_token @next_page_token end |
#queues ⇒ Array<Google::Apis::CloudtasksV2::Queue>
The list of queues.
Corresponds to the JSON property queues
886 887 888 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 886 def queues @queues end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
893 894 895 896 |
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 893 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @queues = args[:queues] if args.key?(:queues) end |