UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

34 lines (33 loc) 1.12 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 V1FeatureSpinlocks */ export interface V1FeatureSpinlocks { /** * Enabled determines if the feature should be enabled or disabled on the guest. Defaults to true. * @type {boolean} * @memberof V1FeatureSpinlocks */ enabled?: boolean; /** * Retries indicates the number of retries. Must be a value greater or equal 4096. Defaults to 4096. * @type {number} * @memberof V1FeatureSpinlocks */ spinlocks?: number; } export declare function V1FeatureSpinlocksFromJSON(json: any): V1FeatureSpinlocks; export declare function V1FeatureSpinlocksFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1FeatureSpinlocks; export declare function V1FeatureSpinlocksToJSON(value?: V1FeatureSpinlocks | null): any;