Show / Hide Table of Contents

Class InstanceStatus

Instance represents the status of an instance of a Job.

Inheritance
System.Object
InstanceStatus
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class InstanceStatus : IDirectResponseSchema

Properties

CompletionTime

Optional. Represents time when the instance was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. +optional

Declaration
[JsonProperty("completionTime")]
public virtual object CompletionTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Failed

Optional. The number of times this instance exited with code > 0; +optional

Declaration
[JsonProperty("failed")]
public virtual int? Failed { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Index

Required. Index of the instance, unique per Job, and beginning at 0.

Declaration
[JsonProperty("index")]
public virtual int? Index { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

LastAttemptResult

Optional. Result of the last attempt of this instance. +optional

Declaration
[JsonProperty("lastAttemptResult")]
public virtual InstanceAttemptResult LastAttemptResult { get; set; }
Property Value
Type Description
InstanceAttemptResult

LastExitCode

Optional. Last exit code seen for this instance. +optional

Declaration
[JsonProperty("lastExitCode")]
public virtual int? LastExitCode { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Restarted

Optional. The number of times this instance was restarted. Instances are restarted according the restartPolicy configured in the Job template. +optional

Declaration
[JsonProperty("restarted")]
public virtual int? Restarted { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

StartTime

Optional. Represents time when the instance was created by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC. +optional

Declaration
[JsonProperty("startTime")]
public virtual object StartTime { get; set; }
Property Value
Type Description
System.Object

Succeeded

Optional. The number of times this instance exited with code == 0. +optional

Declaration
[JsonProperty("succeeded")]
public virtual int? Succeeded { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top