UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 966 B
/** * 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. */ /** * Realtime holds the tuning knobs specific for realtime workloads. * @export * @interface V1Realtime */ export interface V1Realtime { /** * Mask defines the vcpu mask expression that defines which vcpus are used for realtime. Format matches libvirt's expressions. Example: "0-3,^1","0,2,3","2-3" * @type {string} * @memberof V1Realtime */ mask?: string; } export declare function V1RealtimeFromJSON(json: any): V1Realtime; export declare function V1RealtimeFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Realtime; export declare function V1RealtimeToJSON(value?: V1Realtime | null): any;