@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
47 lines (46 loc) • 1.19 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 { V1VGPUOptions } from './';
/**
*
* @export
* @interface V1GPU
*/
export interface V1GPU {
/**
*
* @type {string}
* @memberof V1GPU
*/
deviceName: string;
/**
* Name of the GPU device as exposed by a device plugin
* @type {string}
* @memberof V1GPU
*/
name: string;
/**
* If specified, the virtual network interface address and its tag will be provided to the guest via config drive
* @type {string}
* @memberof V1GPU
*/
tag?: string;
/**
*
* @type {V1VGPUOptions}
* @memberof V1GPU
*/
virtualGPUOptions?: V1VGPUOptions;
}
export declare function V1GPUFromJSON(json: any): V1GPU;
export declare function V1GPUFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1GPU;
export declare function V1GPUToJSON(value?: V1GPU | null): any;