UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

46 lines (45 loc) 1.24 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. */ /** * VolumeRestore contains the data neeed to restore a PVC * @export * @interface V1beta1VolumeRestore */ export interface V1beta1VolumeRestore { /** * * @type {string} * @memberof V1beta1VolumeRestore */ dataVolumeName?: string; /** * * @type {string} * @memberof V1beta1VolumeRestore */ persistentVolumeClaim: string; /** * * @type {string} * @memberof V1beta1VolumeRestore */ volumeName: string; /** * * @type {string} * @memberof V1beta1VolumeRestore */ volumeSnapshotName: string; } export declare function V1beta1VolumeRestoreFromJSON(json: any): V1beta1VolumeRestore; export declare function V1beta1VolumeRestoreFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1VolumeRestore; export declare function V1beta1VolumeRestoreToJSON(value?: V1beta1VolumeRestore | null): any;