UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

58 lines (57 loc) 1.96 kB
/** * KubeVirt Containerized Data Importer API * Containerized Data Importer for KubeVirt. * * The version of the OpenAPI document: 1.0.0 * Contact: kubevirt-dev@googlegroups.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * DataImportCronCondition represents the state of a data import cron condition * @export * @interface V1beta1DataImportCronCondition */ export interface V1beta1DataImportCronCondition { /** * 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 V1beta1DataImportCronCondition */ lastHeartbeatTime?: 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 V1beta1DataImportCronCondition */ lastTransitionTime?: string; /** * * @type {string} * @memberof V1beta1DataImportCronCondition */ message?: string; /** * * @type {string} * @memberof V1beta1DataImportCronCondition */ reason?: string; /** * * @type {string} * @memberof V1beta1DataImportCronCondition */ status: string; /** * * @type {string} * @memberof V1beta1DataImportCronCondition */ type: string; } export declare function V1beta1DataImportCronConditionFromJSON(json: any): V1beta1DataImportCronCondition; export declare function V1beta1DataImportCronConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataImportCronCondition; export declare function V1beta1DataImportCronConditionToJSON(value?: V1beta1DataImportCronCondition | null): any;