UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

40 lines (39 loc) 1.14 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. */ /** * * @export * @interface V1HostDevice */ export interface V1HostDevice { /** * DeviceName is the resource name of the host device exposed by a device plugin * @type {string} * @memberof V1HostDevice */ deviceName: string; /** * * @type {string} * @memberof V1HostDevice */ name: string; /** * If specified, the virtual network interface address and its tag will be provided to the guest via config drive * @type {string} * @memberof V1HostDevice */ tag?: string; } export declare function V1HostDeviceFromJSON(json: any): V1HostDevice; export declare function V1HostDeviceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1HostDevice; export declare function V1HostDeviceToJSON(value?: V1HostDevice | null): any;