Show / Hide Table of Contents

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 Source

Active

The number of actively running pods.

Declaration
public readonly int Active
Field Value
Type Description
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 readonly string CompletionTime
Field Value
Type Description
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 readonly ImmutableArray<JobCondition> Conditions
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<JobCondition>
View Source

Failed

The number of pods which reached phase Failed.

Declaration
public readonly int Failed
Field Value
Type Description
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 readonly string StartTime
Field Value
Type Description
System.String
View Source

Succeeded

The number of pods which reached phase Succeeded.

Declaration
public readonly int Succeeded
Field Value
Type Description
System.Int32
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.