UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

41 lines (40 loc) 1.46 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. */ import { V1PersistentVolumeClaimInfo } from './'; /** * StorageMigratedVolumeInfo tracks the information about the source and destination volumes during the volume migration * @export * @interface V1StorageMigratedVolumeInfo */ export interface V1StorageMigratedVolumeInfo { /** * * @type {V1PersistentVolumeClaimInfo} * @memberof V1StorageMigratedVolumeInfo */ destinationPVCInfo?: V1PersistentVolumeClaimInfo; /** * * @type {V1PersistentVolumeClaimInfo} * @memberof V1StorageMigratedVolumeInfo */ sourcePVCInfo?: V1PersistentVolumeClaimInfo; /** * VolumeName is the name of the volume that is being migrated * @type {string} * @memberof V1StorageMigratedVolumeInfo */ volumeName: string; } export declare function V1StorageMigratedVolumeInfoFromJSON(json: any): V1StorageMigratedVolumeInfo; export declare function V1StorageMigratedVolumeInfoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1StorageMigratedVolumeInfo; export declare function V1StorageMigratedVolumeInfoToJSON(value?: V1StorageMigratedVolumeInfo | null): any;