UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

34 lines (33 loc) 1.19 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. */ /** * SnapshotVolumesLists includes the list of volumes which were included in the snapshot and volumes which were excluded from the snapshot * @export * @interface V1beta1SnapshotVolumesLists */ export interface V1beta1SnapshotVolumesLists { /** * * @type {Array<string>} * @memberof V1beta1SnapshotVolumesLists */ excludedVolumes?: Array<string>; /** * * @type {Array<string>} * @memberof V1beta1SnapshotVolumesLists */ includedVolumes?: Array<string>; } export declare function V1beta1SnapshotVolumesListsFromJSON(json: any): V1beta1SnapshotVolumesLists; export declare function V1beta1SnapshotVolumesListsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1SnapshotVolumesLists; export declare function V1beta1SnapshotVolumesListsToJSON(value?: V1beta1SnapshotVolumesLists | null): any;