UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

34 lines (33 loc) 1.26 kB
/** * KubeVirt Containerized Data Importer API * Containerized Data Importer for KubeVirt. * * 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. */ /** * DataVolumeSourceSnapshot provides the parameters to create a Data Volume from an existing VolumeSnapshot * @export * @interface V1beta1DataVolumeSourceSnapshot */ export interface V1beta1DataVolumeSourceSnapshot { /** * The name of the source VolumeSnapshot * @type {string} * @memberof V1beta1DataVolumeSourceSnapshot */ name: string; /** * The namespace of the source VolumeSnapshot * @type {string} * @memberof V1beta1DataVolumeSourceSnapshot */ namespace: string; } export declare function V1beta1DataVolumeSourceSnapshotFromJSON(json: any): V1beta1DataVolumeSourceSnapshot; export declare function V1beta1DataVolumeSourceSnapshotFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1DataVolumeSourceSnapshot; export declare function V1beta1DataVolumeSourceSnapshotToJSON(value?: V1beta1DataVolumeSourceSnapshot | null): any;