UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

29 lines (28 loc) 1.2 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 { V1RESTClientConfiguration } from './'; /** * ReloadableComponentConfiguration holds all generic k8s configuration options which can be reloaded by components without requiring a restart. * @export * @interface V1ReloadableComponentConfiguration */ export interface V1ReloadableComponentConfiguration { /** * * @type {V1RESTClientConfiguration} * @memberof V1ReloadableComponentConfiguration */ restClient?: V1RESTClientConfiguration; } export declare function V1ReloadableComponentConfigurationFromJSON(json: any): V1ReloadableComponentConfiguration; export declare function V1ReloadableComponentConfigurationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ReloadableComponentConfiguration; export declare function V1ReloadableComponentConfigurationToJSON(value?: V1ReloadableComponentConfiguration | null): any;