Class TaskStatus
Status of the task.
Implements
Inherited Members
Namespace: Google.Apis.CloudTasks.v2beta2.Data
Assembly: Google.Apis.CloudTasks.v2beta2.dll
Syntax
public class TaskStatus : IDirectResponseSchema
Properties
AttemptDispatchCount
Output only. The number of attempts dispatched. This count includes attempts which have been dispatched but haven't received a response.
Declaration
[JsonProperty("attemptDispatchCount")]
public virtual int? AttemptDispatchCount { get; set; }
Property Value
Type | Description |
---|---|
int? |
AttemptResponseCount
Output only. The number of attempts which have received a response. This field is not calculated for pull tasks.
Declaration
[JsonProperty("attemptResponseCount")]
public virtual int? AttemptResponseCount { get; set; }
Property Value
Type | Description |
---|---|
int? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FirstAttemptStatus
Output only. 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.
Declaration
[JsonProperty("firstAttemptStatus")]
public virtual AttemptStatus FirstAttemptStatus { get; set; }
Property Value
Type | Description |
---|---|
AttemptStatus |
LastAttemptStatus
Output only. The status of the task's last attempt. This field is not calculated for pull tasks.
Declaration
[JsonProperty("lastAttemptStatus")]
public virtual AttemptStatus LastAttemptStatus { get; set; }
Property Value
Type | Description |
---|---|
AttemptStatus |