@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.11 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.
*/
/**
* ImportStatus of a currently in progress import
* @export
* @interface V1beta1ImportStatus
*/
export interface V1beta1ImportStatus {
/**
* DataVolumeName is the currently in progress import DataVolume
* @type {string}
* @memberof V1beta1ImportStatus
*/
dataVolumeName: string;
/**
* Digest of the currently imported image
* @type {string}
* @memberof V1beta1ImportStatus
*/
digest: string;
}
export declare function V1beta1ImportStatusFromJSON(json: any): V1beta1ImportStatus;
export declare function V1beta1ImportStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1ImportStatus;
export declare function V1beta1ImportStatusToJSON(value?: V1beta1ImportStatus | null): any;