@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
53 lines (52 loc) • 1.53 kB
TypeScript
/**
* 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.
*/
import { V1Condition } from './';
/**
* CDIStatus defines the status of the installation
* @export
* @interface V1beta1CDIStatus
*/
export interface V1beta1CDIStatus {
/**
* A list of current conditions of the resource
* @type {Array<V1Condition>}
* @memberof V1beta1CDIStatus
*/
conditions?: Array<V1Condition>;
/**
* The observed version of the resource
* @type {string}
* @memberof V1beta1CDIStatus
*/
observedVersion?: string;
/**
* The version of the resource as defined by the operator
* @type {string}
* @memberof V1beta1CDIStatus
*/
operatorVersion?: string;
/**
*
* @type {string}
* @memberof V1beta1CDIStatus
*/
phase?: string;
/**
* The desired version of the resource
* @type {string}
* @memberof V1beta1CDIStatus
*/
targetVersion?: string;
}
export declare function V1beta1CDIStatusFromJSON(json: any): V1beta1CDIStatus;
export declare function V1beta1CDIStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1CDIStatus;
export declare function V1beta1CDIStatusToJSON(value?: V1beta1CDIStatus | null): any;