UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

53 lines (52 loc) 1.69 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. */ import { V1beta1DataVolumeCondition } from './'; /** * DataVolumeStatus contains the current status of the DataVolume * @export * @interface V1beta1DataVolumeStatus */ export interface V1beta1DataVolumeStatus { /** * ClaimName is the name of the underlying PVC used by the DataVolume. * @type {string} * @memberof V1beta1DataVolumeStatus */ claimName?: string; /** * * @type {Array<V1beta1DataVolumeCondition>} * @memberof V1beta1DataVolumeStatus */ conditions?: Array<V1beta1DataVolumeCondition>; /** * Phase is the current phase of the data volume * @type {string} * @memberof V1beta1DataVolumeStatus */ phase?: string; /** * * @type {string} * @memberof V1beta1DataVolumeStatus */ progress?: string; /** * RestartCount is the number of times the pod populating the DataVolume has restarted * @type {number} * @memberof V1beta1DataVolumeStatus */ restartCount?: number; } export declare function V1beta1DataVolumeStatusFromJSON(json: any): V1beta1DataVolumeStatus; export declare function V1beta1DataVolumeStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeStatus; export declare function V1beta1DataVolumeStatusToJSON(value?: V1beta1DataVolumeStatus | null): any;