Show / Hide Table of Contents

Class JobStatusArgs

JobStatus represents the current state of a Job.

Inheritance
System.Object
InputArgs
ResourceArgs
JobStatusArgs
Inherited Members
ResourceArgs.Empty
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 Source

Active

The number of actively running pods.

Declaration
public Input<int> Active { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

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>
View Source

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>
View Source

Failed

The number of pods which reached phase Failed.

Declaration
public Input<int> Failed { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

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>
View Source

Succeeded

The number of pods which reached phase Succeeded.

Declaration
public Input<int> Succeeded { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.