palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
28 lines • 1.14 kB
TypeScript
/**
* Copyright (c) Spectro Cloud
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* Palette APIs - 4.8
* OpenAPI spec version: v1
*/
/**
* DataVolumeSourceVDDK provides the parameters to create a Data Volume from a Vmware source
*/
export type VmDataVolumeSourceVDDK = {
/** BackingFile is the path to the virtual hard disk to migrate from vCenter/ESXi */
backingFile?: string;
/** InitImageURL is an optional URL to an image containing an extracted VDDK library, overrides v2v-vmware config map */
initImageURL?: string;
/** SecretRef provides a reference to a secret containing the username and password needed to access the vCenter or ESXi host */
secretRef?: string;
/** Thumbprint is the certificate thumbprint of the vCenter or ESXi host */
thumbprint?: string;
/** URL is the URL of the vCenter or ESXi host with the VM to migrate */
url?: string;
/** UUID is the UUID of the virtual machine that the backing file is attached to in vCenter/ESXi */
uuid?: string;
};
//# sourceMappingURL=vmDataVolumeSourceVDDK.d.ts.map