Class: Google::Cloud::Tasks::V2::ListTasksRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Tasks::V2::ListTasksRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/tasks/v2/cloudtasks.rb
Overview
Request message for listing tasks using ListTasks.
Instance Attribute Summary collapse
-
#page_size ⇒ ::Integer
Maximum page size.
-
#page_token ⇒ ::String
A token identifying the page of results to return.
-
#parent ⇒ ::String
Required.
-
#response_view ⇒ ::Google::Cloud::Tasks::V2::Task::View
The response_view specifies which subset of the Task will be returned.
Instance Attribute Details
#page_size ⇒ ::Integer
Returns Maximum page size.
Fewer tasks than requested might be returned, even if more tasks exist; use next_page_token in the response to determine if more tasks exist.
The maximum page size is 1000. If unspecified, the page size will be the maximum.
226 227 228 229 |
# File 'proto_docs/google/cloud/tasks/v2/cloudtasks.rb', line 226 class ListTasksRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#page_token ⇒ ::String
A token identifying the page of results to return.
To request the first page results, page_token must be empty. To request the next page of results, page_token must be the value of next_page_token returned from the previous call to ListTasks method.
The page token is valid for only 2 hours.
226 227 228 229 |
# File 'proto_docs/google/cloud/tasks/v2/cloudtasks.rb', line 226 class ListTasksRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parent ⇒ ::String
Returns Required. The queue name. For example:
projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID
.
226 227 228 229 |
# File 'proto_docs/google/cloud/tasks/v2/cloudtasks.rb', line 226 class ListTasksRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#response_view ⇒ ::Google::Cloud::Tasks::V2::Task::View
Returns The response_view specifies which subset of the Task will be returned.
By default response_view is BASIC; not all information is retrieved by default because some data, such as payloads, might be desirable to return only when needed because of its large size or because of the sensitivity of data that it contains.
Authorization for FULL requires
cloudtasks.tasks.fullView
Google IAM
permission on the Task resource.
226 227 228 229 |
# File 'proto_docs/google/cloud/tasks/v2/cloudtasks.rb', line 226 class ListTasksRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |