UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

47 lines (46 loc) 1.53 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 { V1beta1Error } from './'; /** * VolumeSnapshotStatus is the status of a VolumeSnapshot * @export * @interface V1beta1VolumeSnapshotStatus */ export interface V1beta1VolumeSnapshotStatus { /** * Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. * @type {string} * @memberof V1beta1VolumeSnapshotStatus */ creationTime?: string; /** * * @type {V1beta1Error} * @memberof V1beta1VolumeSnapshotStatus */ error?: V1beta1Error; /** * * @type {boolean} * @memberof V1beta1VolumeSnapshotStatus */ readyToUse?: boolean; /** * * @type {string} * @memberof V1beta1VolumeSnapshotStatus */ volumeSnapshotName: string; } export declare function V1beta1VolumeSnapshotStatusFromJSON(json: any): V1beta1VolumeSnapshotStatus; export declare function V1beta1VolumeSnapshotStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1VolumeSnapshotStatus; export declare function V1beta1VolumeSnapshotStatusToJSON(value?: V1beta1VolumeSnapshotStatus | null): any;