UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 1.09 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. */ /** * * @export * @interface V1VirtualMachineInstanceMigrationSpec */ export interface V1VirtualMachineInstanceMigrationSpec { /** * The name of the VMI to perform the migration on. VMI must exist in the migration objects namespace * @type {string} * @memberof V1VirtualMachineInstanceMigrationSpec */ vmiName?: string; } export declare function V1VirtualMachineInstanceMigrationSpecFromJSON(json: any): V1VirtualMachineInstanceMigrationSpec; export declare function V1VirtualMachineInstanceMigrationSpecFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VirtualMachineInstanceMigrationSpec; export declare function V1VirtualMachineInstanceMigrationSpecToJSON(value?: V1VirtualMachineInstanceMigrationSpec | null): any;