Show / Hide Table of Contents

Class JobStatus

JobStatus represents the current state of a Job.

Inheritance
System.Object
JobStatus
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 JobStatus : IDirectResponseSchema

Properties

Active

Optional. The number of actively running instances. +optional

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

CompletionTime

Optional. Represents time when the job 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

Conditions

Optional. The latest available observations of a job's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ +optional

Declaration
[JsonProperty("conditions")]
public virtual IList<JobCondition> Conditions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<JobCondition>

ETag

The ETag of the item.

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

Failed

Optional. The number of instances which reached phase Failed. +optional

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

ImageDigest

Optional. ImageDigest holds the resolved digest for the image specified within .Spec.Template.Spec.Container.Image. The digest is resolved during the creation of the Job. This field holds the digest value regardless of whether a tag or digest was originally specified in the Container object.

Declaration
[JsonProperty("imageDigest")]
public virtual string ImageDigest { get; set; }
Property Value
Type Description
System.String

Instances

Optional. Status of completed, failed, and running instances. +optional

Declaration
[JsonProperty("instances")]
public virtual IList<InstanceStatus> Instances { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<InstanceStatus>

ObservedGeneration

Optional. The 'generation' of the job that was last processed by the controller.

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

StartTime

Optional. Represents time when the job was acknowledged 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 instances which reached phase Succeeded. +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