@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
34 lines (33 loc) • 1.11 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.
*/
/**
* Represents the user's configuration to emulate sound cards in the VMI.
* @export
* @interface V1SoundDevice
*/
export interface V1SoundDevice {
/**
* We only support ich9 or ac97. If SoundDevice is not set: No sound card is emulated. If SoundDevice is set but Model is not: ich9
* @type {string}
* @memberof V1SoundDevice
*/
model?: string;
/**
* User's defined name for this sound device
* @type {string}
* @memberof V1SoundDevice
*/
name: string;
}
export declare function V1SoundDeviceFromJSON(json: any): V1SoundDevice;
export declare function V1SoundDeviceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1SoundDevice;
export declare function V1SoundDeviceToJSON(value?: V1SoundDevice | null): any;