41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
/**
|
|
* Kubernetes
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: v1.22.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 { V1ObjectReference } from './v1ObjectReference';
|
|
/**
|
|
* CronJobStatus represents the current state of a cron job.
|
|
*/
|
|
export declare class V1CronJobStatus {
|
|
/**
|
|
* A list of pointers to currently running jobs.
|
|
*/
|
|
'active'?: Array<V1ObjectReference>;
|
|
/**
|
|
* Information when was the last time the job was successfully scheduled.
|
|
*/
|
|
'lastScheduleTime'?: Date;
|
|
/**
|
|
* Information when was the last time the job successfully completed.
|
|
*/
|
|
'lastSuccessfulTime'?: Date;
|
|
static discriminator: string | undefined;
|
|
static attributeTypeMap: Array<{
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
}>;
|
|
static getAttributeTypeMap(): {
|
|
name: string;
|
|
baseName: string;
|
|
type: string;
|
|
}[];
|
|
}
|