UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

34 lines (33 loc) 1.34 kB
/** * KubeVirt API * This is KubeVirt API an add-on for Kubernetes. * * 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. */ /** * VirtualMachineExportVolumeFormat contains the format type and URL to get the volume in that format * @export * @interface V1beta1VirtualMachineExportVolumeFormat */ export interface V1beta1VirtualMachineExportVolumeFormat { /** * Format is the format of the image at the specified URL * @type {string} * @memberof V1beta1VirtualMachineExportVolumeFormat */ format: string; /** * Url is the url that contains the volume in the format specified * @type {string} * @memberof V1beta1VirtualMachineExportVolumeFormat */ url: string; } export declare function V1beta1VirtualMachineExportVolumeFormatFromJSON(json: any): V1beta1VirtualMachineExportVolumeFormat; export declare function V1beta1VirtualMachineExportVolumeFormatFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1VirtualMachineExportVolumeFormat; export declare function V1beta1VirtualMachineExportVolumeFormatToJSON(value?: V1beta1VirtualMachineExportVolumeFormat | null): any;