UNPKG

kubernetes-models

Version:
23 lines (22 loc) 865 B
import { Model } from "@kubernetes-models/base"; /** * UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters. */ export interface IUncountedTerminatedPods { /** * Failed holds UIDs of failed Pods. */ "failed"?: Array<string>; /** * Succeeded holds UIDs of succeeded Pods. */ "succeeded"?: Array<string>; } /** * UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters. */ export declare class UncountedTerminatedPods extends Model<IUncountedTerminatedPods> implements IUncountedTerminatedPods { "failed"?: Array<string>; "succeeded"?: Array<string>; } export { IUncountedTerminatedPods as IIoK8sApiBatchV1UncountedTerminatedPods, UncountedTerminatedPods as IoK8sApiBatchV1UncountedTerminatedPods };