UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

41 lines (40 loc) 1.74 kB
/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: unversioned * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { IoK8sApiCoreV1ObjectReference } from './'; /** * CronJobStatus represents the current state of a cron job. * @export * @interface IoK8sApiBatchV1CronJobStatus */ export interface IoK8sApiBatchV1CronJobStatus { /** * A list of pointers to currently running jobs. * @type {Array<IoK8sApiCoreV1ObjectReference>} * @memberof IoK8sApiBatchV1CronJobStatus */ active?: Array<IoK8sApiCoreV1ObjectReference>; /** * Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. * @type {string} * @memberof IoK8sApiBatchV1CronJobStatus */ lastScheduleTime?: string; /** * Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. * @type {string} * @memberof IoK8sApiBatchV1CronJobStatus */ lastSuccessfulTime?: string; } export declare function IoK8sApiBatchV1CronJobStatusFromJSON(json: any): IoK8sApiBatchV1CronJobStatus; export declare function IoK8sApiBatchV1CronJobStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiBatchV1CronJobStatus; export declare function IoK8sApiBatchV1CronJobStatusToJSON(value?: IoK8sApiBatchV1CronJobStatus | null): any;