Reference documentation and code samples for the Cloud Tasks V2beta3 API class Google::Cloud::Tasks::V2beta3::Task.
A unit of scheduled work.
Inherits
- Object
Extended By
- Google::Protobuf::MessageExts::ClassMethods
Includes
- Google::Protobuf::MessageExts
Methods
#app_engine_http_request
def app_engine_http_request() -> ::Google::Cloud::Tasks::V2beta3::AppEngineHttpRequest
-
(::Google::Cloud::Tasks::V2beta3::AppEngineHttpRequest) — HTTP request that is sent to the App Engine app handler.
An App Engine task is a task that has AppEngineHttpRequest set.
#app_engine_http_request=
def app_engine_http_request=(value) -> ::Google::Cloud::Tasks::V2beta3::AppEngineHttpRequest
-
value (::Google::Cloud::Tasks::V2beta3::AppEngineHttpRequest) — HTTP request that is sent to the App Engine app handler.
An App Engine task is a task that has AppEngineHttpRequest set.
-
(::Google::Cloud::Tasks::V2beta3::AppEngineHttpRequest) — HTTP request that is sent to the App Engine app handler.
An App Engine task is a task that has AppEngineHttpRequest set.
#create_time
def create_time() -> ::Google::Protobuf::Timestamp
-
(::Google::Protobuf::Timestamp) — Output only. The time that the task was created.
create_time
will be truncated to the nearest second.
#create_time=
def create_time=(value) -> ::Google::Protobuf::Timestamp
-
value (::Google::Protobuf::Timestamp) — Output only. The time that the task was created.
create_time
will be truncated to the nearest second.
-
(::Google::Protobuf::Timestamp) — Output only. The time that the task was created.
create_time
will be truncated to the nearest second.
#dispatch_count
def dispatch_count() -> ::Integer
-
(::Integer) — Output only. The number of attempts dispatched.
This count includes attempts which have been dispatched but haven't received a response.
#dispatch_count=
def dispatch_count=(value) -> ::Integer
-
value (::Integer) — Output only. The number of attempts dispatched.
This count includes attempts which have been dispatched but haven't received a response.
-
(::Integer) — Output only. The number of attempts dispatched.
This count includes attempts which have been dispatched but haven't received a response.
#dispatch_deadline
def dispatch_deadline() -> ::Google::Protobuf::Duration
-
(::Google::Protobuf::Duration) — The deadline for requests sent to the worker. If the worker does not
respond by this deadline then the request is cancelled and the attempt
is marked as a
DEADLINE_EXCEEDED
failure. Cloud Tasks will retry the task according to the RetryConfig.Note that when the request is cancelled, Cloud Tasks will stop listening for the response, but whether the worker stops processing depends on the worker. For example, if the worker is stuck, it may not react to cancelled requests.
The default and maximum values depend on the type of request:
For HTTP tasks, the default is 10 minutes. The deadline must be in the interval [15 seconds, 30 minutes].
For App Engine tasks, 0 indicates that the request has the default deadline. The default deadline depends on the scaling type of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. Regardless of the task's
dispatch_deadline
, the app handler will not run for longer than than the service's timeout. We recommend setting thedispatch_deadline
to at most a few seconds more than the app handler's timeout. For more information see Timeouts.
dispatch_deadline
will be truncated to the nearest millisecond. The deadline is an approximate deadline.
#dispatch_deadline=
def dispatch_deadline=(value) -> ::Google::Protobuf::Duration
-
value (::Google::Protobuf::Duration) — The deadline for requests sent to the worker. If the worker does not
respond by this deadline then the request is cancelled and the attempt
is marked as a
DEADLINE_EXCEEDED
failure. Cloud Tasks will retry the task according to the RetryConfig.Note that when the request is cancelled, Cloud Tasks will stop listening for the response, but whether the worker stops processing depends on the worker. For example, if the worker is stuck, it may not react to cancelled requests.
The default and maximum values depend on the type of request:
For HTTP tasks, the default is 10 minutes. The deadline must be in the interval [15 seconds, 30 minutes].
For App Engine tasks, 0 indicates that the request has the default deadline. The default deadline depends on the scaling type of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. Regardless of the task's
dispatch_deadline
, the app handler will not run for longer than than the service's timeout. We recommend setting thedispatch_deadline
to at most a few seconds more than the app handler's timeout. For more information see Timeouts.
dispatch_deadline
will be truncated to the nearest millisecond. The deadline is an approximate deadline.
-
(::Google::Protobuf::Duration) — The deadline for requests sent to the worker. If the worker does not
respond by this deadline then the request is cancelled and the attempt
is marked as a
DEADLINE_EXCEEDED
failure. Cloud Tasks will retry the task according to the RetryConfig.Note that when the request is cancelled, Cloud Tasks will stop listening for the response, but whether the worker stops processing depends on the worker. For example, if the worker is stuck, it may not react to cancelled requests.
The default and maximum values depend on the type of request:
For HTTP tasks, the default is 10 minutes. The deadline must be in the interval [15 seconds, 30 minutes].
For App Engine tasks, 0 indicates that the request has the default deadline. The default deadline depends on the scaling type of the service: 10 minutes for standard apps with automatic scaling, 24 hours for standard apps with manual and basic scaling, and 60 minutes for flex apps. If the request deadline is set, it must be in the interval [15 seconds, 24 hours 15 seconds]. Regardless of the task's
dispatch_deadline
, the app handler will not run for longer than than the service's timeout. We recommend setting thedispatch_deadline
to at most a few seconds more than the app handler's timeout. For more information see Timeouts.
dispatch_deadline
will be truncated to the nearest millisecond. The deadline is an approximate deadline.
#first_attempt
def first_attempt() -> ::Google::Cloud::Tasks::V2beta3::Attempt
-
(::Google::Cloud::Tasks::V2beta3::Attempt) — Output only. The status of the task's first attempt.
Only dispatch_time will be set. The other Attempt information is not retained by Cloud Tasks.
#first_attempt=
def first_attempt=(value) -> ::Google::Cloud::Tasks::V2beta3::Attempt
-
value (::Google::Cloud::Tasks::V2beta3::Attempt) — Output only. The status of the task's first attempt.
Only dispatch_time will be set. The other Attempt information is not retained by Cloud Tasks.
-
(::Google::Cloud::Tasks::V2beta3::Attempt) — Output only. The status of the task's first attempt.
Only dispatch_time will be set. The other Attempt information is not retained by Cloud Tasks.
#http_request
def http_request() -> ::Google::Cloud::Tasks::V2beta3::HttpRequest
-
(::Google::Cloud::Tasks::V2beta3::HttpRequest) — HTTP request that is sent to the task's target.
An HTTP task is a task that has HttpRequest set.
#http_request=
def http_request=(value) -> ::Google::Cloud::Tasks::V2beta3::HttpRequest
-
value (::Google::Cloud::Tasks::V2beta3::HttpRequest) — HTTP request that is sent to the task's target.
An HTTP task is a task that has HttpRequest set.
-
(::Google::Cloud::Tasks::V2beta3::HttpRequest) — HTTP request that is sent to the task's target.
An HTTP task is a task that has HttpRequest set.
#last_attempt
def last_attempt() -> ::Google::Cloud::Tasks::V2beta3::Attempt
- (::Google::Cloud::Tasks::V2beta3::Attempt) — Output only. The status of the task's last attempt.
#last_attempt=
def last_attempt=(value) -> ::Google::Cloud::Tasks::V2beta3::Attempt
- value (::Google::Cloud::Tasks::V2beta3::Attempt) — Output only. The status of the task's last attempt.
- (::Google::Cloud::Tasks::V2beta3::Attempt) — Output only. The status of the task's last attempt.
#name
def name() -> ::String
-
(::String) —
Optionally caller-specified in CreateTask.
The task name.
The task name must have the following format:
projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID
PROJECT_ID
can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see Identifying projectsLOCATION_ID
is the canonical ID for the task's location. The list of available locations can be obtained by calling::Google::Cloud::Location::Locations::Client#list_locations
. For more information, see https://cloud.google.com/about/locations/.QUEUE_ID
can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters.TASK_ID
can contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
#name=
def name=(value) -> ::String
-
value (::String) —
Optionally caller-specified in CreateTask.
The task name.
The task name must have the following format:
projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID
PROJECT_ID
can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see Identifying projectsLOCATION_ID
is the canonical ID for the task's location. The list of available locations can be obtained by calling::Google::Cloud::Location::Locations::Client#list_locations
. For more information, see https://cloud.google.com/about/locations/.QUEUE_ID
can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters.TASK_ID
can contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
-
(::String) —
Optionally caller-specified in CreateTask.
The task name.
The task name must have the following format:
projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_ID/tasks/TASK_ID
PROJECT_ID
can contain letters ([A-Za-z]), numbers ([0-9]), hyphens (-), colons (:), or periods (.). For more information, see Identifying projectsLOCATION_ID
is the canonical ID for the task's location. The list of available locations can be obtained by calling::Google::Cloud::Location::Locations::Client#list_locations
. For more information, see https://cloud.google.com/about/locations/.QUEUE_ID
can contain letters ([A-Za-z]), numbers ([0-9]), or hyphens (-). The maximum length is 100 characters.TASK_ID
can contain only letters ([A-Za-z]), numbers ([0-9]), hyphens (-), or underscores (_). The maximum length is 500 characters.
#pull_message
def pull_message() -> ::Google::Cloud::Tasks::V2beta3::PullMessage
- (::Google::Cloud::Tasks::V2beta3::PullMessage) — Pull Message contained in a task in a PULL queue type. This payload type cannot be explicitly set through Cloud Tasks API. Its purpose, currently is to provide backward compatibility with App Engine Task Queue pull queues to provide a way to inspect contents of pull tasks through the CloudTasks.GetTask.
#pull_message=
def pull_message=(value) -> ::Google::Cloud::Tasks::V2beta3::PullMessage
- value (::Google::Cloud::Tasks::V2beta3::PullMessage) — Pull Message contained in a task in a PULL queue type. This payload type cannot be explicitly set through Cloud Tasks API. Its purpose, currently is to provide backward compatibility with App Engine Task Queue pull queues to provide a way to inspect contents of pull tasks through the CloudTasks.GetTask.
- (::Google::Cloud::Tasks::V2beta3::PullMessage) — Pull Message contained in a task in a PULL queue type. This payload type cannot be explicitly set through Cloud Tasks API. Its purpose, currently is to provide backward compatibility with App Engine Task Queue pull queues to provide a way to inspect contents of pull tasks through the CloudTasks.GetTask.
#response_count
def response_count() -> ::Integer
- (::Integer) — Output only. The number of attempts which have received a response.
#response_count=
def response_count=(value) -> ::Integer
- value (::Integer) — Output only. The number of attempts which have received a response.
- (::Integer) — Output only. The number of attempts which have received a response.
#schedule_time
def schedule_time() -> ::Google::Protobuf::Timestamp
-
(::Google::Protobuf::Timestamp) — The time when the task is scheduled to be attempted.
For App Engine queues, this is when the task will be attempted or retried.
schedule_time
will be truncated to the nearest microsecond.
#schedule_time=
def schedule_time=(value) -> ::Google::Protobuf::Timestamp
-
value (::Google::Protobuf::Timestamp) — The time when the task is scheduled to be attempted.
For App Engine queues, this is when the task will be attempted or retried.
schedule_time
will be truncated to the nearest microsecond.
-
(::Google::Protobuf::Timestamp) — The time when the task is scheduled to be attempted.
For App Engine queues, this is when the task will be attempted or retried.
schedule_time
will be truncated to the nearest microsecond.
#view
def view() -> ::Google::Cloud::Tasks::V2beta3::Task::View
- (::Google::Cloud::Tasks::V2beta3::Task::View) — Output only. The view specifies which subset of the Task has been returned.
#view=
def view=(value) -> ::Google::Cloud::Tasks::V2beta3::Task::View
- value (::Google::Cloud::Tasks::V2beta3::Task::View) — Output only. The view specifies which subset of the Task has been returned.
- (::Google::Cloud::Tasks::V2beta3::Task::View) — Output only. The view specifies which subset of the Task has been returned.