@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
41 lines (40 loc) • 1.27 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 { V1USBSelector } from './';
/**
*
* @export
* @interface V1USBHostDevice
*/
export interface V1USBHostDevice {
/**
* If true, KubeVirt will leave the allocation and monitoring to an external device plugin
* @type {boolean}
* @memberof V1USBHostDevice
*/
externalResourceProvider?: boolean;
/**
* Identifies the list of USB host devices. e.g: kubevirt.io/storage, kubevirt.io/bootable-usb, etc
* @type {string}
* @memberof V1USBHostDevice
*/
resourceName: string;
/**
*
* @type {Array<V1USBSelector>}
* @memberof V1USBHostDevice
*/
selectors?: Array<V1USBSelector>;
}
export declare function V1USBHostDeviceFromJSON(json: any): V1USBHostDevice;
export declare function V1USBHostDeviceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1USBHostDevice;
export declare function V1USBHostDeviceToJSON(value?: V1USBHostDevice | null): any;