Class TaskAttemptResult
Result of a task attempt.
Implements
Inherited Members
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class TaskAttemptResult : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ExitCode
Optional. The exit code of this attempt. This may be unset if the container was unable to exit cleanly with a code due to some other failure. See status field for possible failure details. At most one of exit_code or term_signal will be set.
Declaration
[JsonProperty("exitCode")]
public virtual int? ExitCode { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Status
Optional. The status of this attempt. If the status code is OK, then the attempt succeeded.
Declaration
[JsonProperty("status")]
public virtual GoogleRpcStatus Status { get; set; }
Property Value
| Type | Description |
|---|---|
| GoogleRpcStatus |
TermSignal
Optional. Termination signal of the container. This is set to non-zero if the container is terminated by the system. At most one of exit_code or term_signal will be set.
Declaration
[JsonProperty("termSignal")]
public virtual int? TermSignal { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |