Class JobStatusArgs
JobStatus represents the current state of a Job.
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.Inputs.Batch.V1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class JobStatusArgs : ResourceArgs
Properties
View SourceActive
The number of actively running pods.
Declaration
public Input<int> Active { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<string> CompletionTime { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 InputList<JobConditionArgs> Conditions { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<JobConditionArgs> |
Failed
The number of pods which reached phase Failed.
Declaration
public Input<int> Failed { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<string> StartTime { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Succeeded
The number of pods which reached phase Succeeded.
Declaration
public Input<int> Succeeded { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |