UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

41 lines (40 loc) 1.34 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 { V1MediatedHostDevice, V1PciHostDevice, V1USBHostDevice } from './'; /** * PermittedHostDevices holds information about devices allowed for passthrough * @export * @interface V1PermittedHostDevices */ export interface V1PermittedHostDevices { /** * * @type {Array<V1MediatedHostDevice>} * @memberof V1PermittedHostDevices */ mediatedDevices?: Array<V1MediatedHostDevice>; /** * * @type {Array<V1PciHostDevice>} * @memberof V1PermittedHostDevices */ pciHostDevices?: Array<V1PciHostDevice>; /** * * @type {Array<V1USBHostDevice>} * @memberof V1PermittedHostDevices */ usb?: Array<V1USBHostDevice>; } export declare function V1PermittedHostDevicesFromJSON(json: any): V1PermittedHostDevices; export declare function V1PermittedHostDevicesFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1PermittedHostDevices; export declare function V1PermittedHostDevicesToJSON(value?: V1PermittedHostDevices | null): any;