UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

40 lines (39 loc) 1.18 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 V1VolumeSnapshotStatus */ export interface V1VolumeSnapshotStatus { /** * True if the volume supports snapshotting * @type {boolean} * @memberof V1VolumeSnapshotStatus */ enabled: boolean; /** * Volume name * @type {string} * @memberof V1VolumeSnapshotStatus */ name: string; /** * Empty if snapshotting is enabled, contains reason otherwise * @type {string} * @memberof V1VolumeSnapshotStatus */ reason?: string; } export declare function V1VolumeSnapshotStatusFromJSON(json: any): V1VolumeSnapshotStatus; export declare function V1VolumeSnapshotStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VolumeSnapshotStatus; export declare function V1VolumeSnapshotStatusToJSON(value?: V1VolumeSnapshotStatus | null): any;