@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
35 lines (34 loc) • 1.3 kB
TypeScript
/**
* 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 { V1DataVolumeSource, V1PersistentVolumeClaimVolumeSource } from './';
/**
* HotplugVolumeSource Represents the source of a volume to mount which are capable of being hotplugged on a live running VMI. Only one of its members may be specified.
* @export
* @interface V1HotplugVolumeSource
*/
export interface V1HotplugVolumeSource {
/**
*
* @type {V1DataVolumeSource}
* @memberof V1HotplugVolumeSource
*/
dataVolume?: V1DataVolumeSource;
/**
*
* @type {V1PersistentVolumeClaimVolumeSource}
* @memberof V1HotplugVolumeSource
*/
persistentVolumeClaim?: V1PersistentVolumeClaimVolumeSource;
}
export declare function V1HotplugVolumeSourceFromJSON(json: any): V1HotplugVolumeSource;
export declare function V1HotplugVolumeSourceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1HotplugVolumeSource;
export declare function V1HotplugVolumeSourceToJSON(value?: V1HotplugVolumeSource | null): any;