UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 930 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. */ /** * Represents if a feature is enabled or disabled. * @export * @interface V1FeatureState */ export interface V1FeatureState { /** * Enabled determines if the feature should be enabled or disabled on the guest. Defaults to true. * @type {boolean} * @memberof V1FeatureState */ enabled?: boolean; } export declare function V1FeatureStateFromJSON(json: any): V1FeatureState; export declare function V1FeatureStateFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1FeatureState; export declare function V1FeatureStateToJSON(value?: V1FeatureState | null): any;