UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

41 lines (40 loc) 1.48 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 { V1NodeMediatedDeviceTypesConfig } from './'; /** * MediatedDevicesConfiguration holds information about MDEV types to be defined, if available * @export * @interface V1MediatedDevicesConfiguration */ export interface V1MediatedDevicesConfiguration { /** * * @type {Array<string>} * @memberof V1MediatedDevicesConfiguration */ mediatedDeviceTypes?: Array<string>; /** * Deprecated. Use mediatedDeviceTypes instead. * @type {Array<string>} * @memberof V1MediatedDevicesConfiguration */ mediatedDevicesTypes?: Array<string>; /** * * @type {Array<V1NodeMediatedDeviceTypesConfig>} * @memberof V1MediatedDevicesConfiguration */ nodeMediatedDeviceTypes?: Array<V1NodeMediatedDeviceTypesConfig>; } export declare function V1MediatedDevicesConfigurationFromJSON(json: any): V1MediatedDevicesConfiguration; export declare function V1MediatedDevicesConfigurationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1MediatedDevicesConfiguration; export declare function V1MediatedDevicesConfigurationToJSON(value?: V1MediatedDevicesConfiguration | null): any;