@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
64 lines (63 loc) • 2.34 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.
*/
/**
* DataVolumeSourceVDDK provides the parameters to create a Data Volume from a Vmware source
* @export
* @interface V1beta1DataVolumeSourceVDDK
*/
export interface V1beta1DataVolumeSourceVDDK {
/**
* BackingFile is the path to the virtual hard disk to migrate from vCenter/ESXi
* @type {string}
* @memberof V1beta1DataVolumeSourceVDDK
*/
backingFile?: string;
/**
* ExtraArgs is a reference to a ConfigMap containing extra arguments to pass directly to the VDDK library
* @type {string}
* @memberof V1beta1DataVolumeSourceVDDK
*/
extraArgs?: string;
/**
* InitImageURL is an optional URL to an image containing an extracted VDDK library, overrides v2v-vmware config map
* @type {string}
* @memberof V1beta1DataVolumeSourceVDDK
*/
initImageURL?: string;
/**
* SecretRef provides a reference to a secret containing the username and password needed to access the vCenter or ESXi host
* @type {string}
* @memberof V1beta1DataVolumeSourceVDDK
*/
secretRef?: string;
/**
* Thumbprint is the certificate thumbprint of the vCenter or ESXi host
* @type {string}
* @memberof V1beta1DataVolumeSourceVDDK
*/
thumbprint?: string;
/**
* URL is the URL of the vCenter or ESXi host with the VM to migrate
* @type {string}
* @memberof V1beta1DataVolumeSourceVDDK
*/
url?: string;
/**
* UUID is the UUID of the virtual machine that the backing file is attached to in vCenter/ESXi
* @type {string}
* @memberof V1beta1DataVolumeSourceVDDK
*/
uuid?: string;
}
export declare function V1beta1DataVolumeSourceVDDKFromJSON(json: any): V1beta1DataVolumeSourceVDDK;
export declare function V1beta1DataVolumeSourceVDDKFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceVDDK;
export declare function V1beta1DataVolumeSourceVDDKToJSON(value?: V1beta1DataVolumeSourceVDDK | null): any;