Class JobStatus
JobStatus represents the current state of a Job.
Inheritance
System.Object
JobStatus
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: Pulumi.Kubernetes.Types.Outputs.Batch.V1
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class JobStatus
Fields
View SourceActive
The number of actively running pods.
Declaration
public readonly int Active
Field Value
| Type | Description |
|---|---|
| System.Int32 |
CompletionTime
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.
Declaration
public readonly string CompletionTime
Field Value
| Type | Description |
|---|---|
| System.String |
Conditions
The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
Declaration
public readonly ImmutableArray<JobCondition> Conditions
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableArray<JobCondition> |
Failed
The number of pods which reached phase Failed.
Declaration
public readonly int Failed
Field Value
| Type | Description |
|---|---|
| System.Int32 |
StartTime
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.
Declaration
public readonly string StartTime
Field Value
| Type | Description |
|---|---|
| System.String |
Succeeded
The number of pods which reached phase Succeeded.
Declaration
public readonly int Succeeded
Field Value
| Type | Description |
|---|---|
| System.Int32 |