@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.26 kB
TypeScript
/**
* 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.
*/
/**
* VirtualMachineExportManifest contains the type and URL of the exported manifest
* @export
* @interface V1beta1VirtualMachineExportManifest
*/
export interface V1beta1VirtualMachineExportManifest {
/**
* Type is the type of manifest returned
* @type {string}
* @memberof V1beta1VirtualMachineExportManifest
*/
type: string;
/**
* Url is the url of the endpoint that returns the manifest
* @type {string}
* @memberof V1beta1VirtualMachineExportManifest
*/
url: string;
}
export declare function V1beta1VirtualMachineExportManifestFromJSON(json: any): V1beta1VirtualMachineExportManifest;
export declare function V1beta1VirtualMachineExportManifestFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1VirtualMachineExportManifest;
export declare function V1beta1VirtualMachineExportManifestToJSON(value?: V1beta1VirtualMachineExportManifest | null): any;