UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

58 lines (57 loc) 1.9 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. */ /** * DataSourceCondition represents the state of a data source condition * @export * @interface V1beta1DataSourceCondition */ export interface V1beta1DataSourceCondition { /** * 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 V1beta1DataSourceCondition */ 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 V1beta1DataSourceCondition */ lastTransitionTime?: string; /** * * @type {string} * @memberof V1beta1DataSourceCondition */ message?: string; /** * * @type {string} * @memberof V1beta1DataSourceCondition */ reason?: string; /** * * @type {string} * @memberof V1beta1DataSourceCondition */ status: string; /** * * @type {string} * @memberof V1beta1DataSourceCondition */ type: string; } export declare function V1beta1DataSourceConditionFromJSON(json: any): V1beta1DataSourceCondition; export declare function V1beta1DataSourceConditionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataSourceCondition; export declare function V1beta1DataSourceConditionToJSON(value?: V1beta1DataSourceCondition | null): any;