/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1.20.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V1JobCondition } from './v1JobCondition'; /** * JobStatus represents the current state of a Job. */ export declare class V1JobStatus { /** * The number of actively running pods. */ 'active'?: number; /** * 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. The completion time is only set when the job finishes successfully. */ 'completionTime'?: Date; /** * The latest available observations of an object\'s current state. When a job fails, one of the conditions will have type == \"Failed\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ */ 'conditions'?: Array; /** * The number of pods which reached phase Failed. */ 'failed'?: number; /** * 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. */ 'startTime'?: Date; /** * The number of pods which reached phase Succeeded. */ 'succeeded'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }