UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

29 lines (28 loc) 1.02 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. */ import { K8sIoApimachineryPkgApisMetaV1LabelSelector } from './'; /** * KSMConfiguration holds information about KSM. * @export * @interface V1KSMConfiguration */ export interface V1KSMConfiguration { /** * * @type {K8sIoApimachineryPkgApisMetaV1LabelSelector} * @memberof V1KSMConfiguration */ nodeLabelSelector?: K8sIoApimachineryPkgApisMetaV1LabelSelector; } export declare function V1KSMConfigurationFromJSON(json: any): V1KSMConfiguration; export declare function V1KSMConfigurationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1KSMConfiguration; export declare function V1KSMConfigurationToJSON(value?: V1KSMConfiguration | null): any;