@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.18 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.
*/
/**
* HotplugVolumeStatus represents the hotplug status of the volume
* @export
* @interface V1HotplugVolumeStatus
*/
export interface V1HotplugVolumeStatus {
/**
* AttachPodName is the name of the pod used to attach the volume to the node.
* @type {string}
* @memberof V1HotplugVolumeStatus
*/
attachPodName?: string;
/**
* AttachPodUID is the UID of the pod used to attach the volume to the node.
* @type {string}
* @memberof V1HotplugVolumeStatus
*/
attachPodUID?: string;
}
export declare function V1HotplugVolumeStatusFromJSON(json: any): V1HotplugVolumeStatus;
export declare function V1HotplugVolumeStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1HotplugVolumeStatus;
export declare function V1HotplugVolumeStatusToJSON(value?: V1HotplugVolumeStatus | null): any;