TaskStatusResponse

data class TaskStatusResponse(val attemptDispatchCount: Int, val attemptResponseCount: Int, val firstAttemptStatus: AttemptStatusResponse, val lastAttemptStatus: AttemptStatusResponse)

Status of the task.

Constructors

Link copied to clipboard
fun TaskStatusResponse(attemptDispatchCount: Int, attemptResponseCount: Int, firstAttemptStatus: AttemptStatusResponse, lastAttemptStatus: AttemptStatusResponse)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The number of attempts dispatched. This count includes attempts which have been dispatched but haven't received a response.

Link copied to clipboard

The number of attempts which have received a response. This field is not calculated for pull tasks.

Link copied to clipboard

The status of the task's first attempt. Only dispatch_time will be set. The other AttemptStatus information is not retained by Cloud Tasks. This field is not calculated for pull tasks.

Link copied to clipboard

The status of the task's last attempt. This field is not calculated for pull tasks.