Cloud Run Admin v2 API - Class TaskAttemptResult (2.15.0)

public sealed class TaskAttemptResult : IMessage<TaskAttemptResult>, IEquatable<TaskAttemptResult>, IDeepCloneable<TaskAttemptResult>, IBufferMessage, IMessage

Reference documentation and code samples for the Cloud Run Admin v2 API class TaskAttemptResult.

Result of a task attempt.

Inheritance

object > TaskAttemptResult

Namespace

Google.Cloud.Run.V2

Assembly

Google.Cloud.Run.V2.dll

Constructors

TaskAttemptResult()

public TaskAttemptResult()

TaskAttemptResult(TaskAttemptResult)

public TaskAttemptResult(TaskAttemptResult other)
Parameter
Name Description
other TaskAttemptResult

Properties

ExitCode

public int ExitCode { get; set; }

Output only. 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.

Property Value
Type Description
int

Status

public Status Status { get; set; }

Output only. The status of this attempt. If the status code is OK, then the attempt succeeded.

Property Value
Type Description
Status

TermSignal

public int TermSignal { get; set; }

Output only. 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.

Property Value
Type Description
int