@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
35 lines (34 loc) • 1.12 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 { V1FeatureState } from './';
/**
*
* @export
* @interface V1VGPUDisplayOptions
*/
export interface V1VGPUDisplayOptions {
/**
* Enabled determines if a display addapter backed by a vGPU should be enabled or disabled on the guest. Defaults to true.
* @type {boolean}
* @memberof V1VGPUDisplayOptions
*/
enabled?: boolean;
/**
*
* @type {V1FeatureState}
* @memberof V1VGPUDisplayOptions
*/
ramFB?: V1FeatureState;
}
export declare function V1VGPUDisplayOptionsFromJSON(json: any): V1VGPUDisplayOptions;
export declare function V1VGPUDisplayOptionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VGPUDisplayOptions;
export declare function V1VGPUDisplayOptionsToJSON(value?: V1VGPUDisplayOptions | null): any;