UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

40 lines (39 loc) 1.16 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. */ /** * MediatedHostDevice represents a host mediated device allowed for passthrough * @export * @interface V1MediatedHostDevice */ export interface V1MediatedHostDevice { /** * * @type {boolean} * @memberof V1MediatedHostDevice */ externalResourceProvider?: boolean; /** * * @type {string} * @memberof V1MediatedHostDevice */ mdevNameSelector: string; /** * * @type {string} * @memberof V1MediatedHostDevice */ resourceName: string; } export declare function V1MediatedHostDeviceFromJSON(json: any): V1MediatedHostDevice; export declare function V1MediatedHostDeviceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1MediatedHostDevice; export declare function V1MediatedHostDeviceToJSON(value?: V1MediatedHostDevice | null): any;