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 { V1RateLimiter } from './'; /** * RESTClientConfiguration allows configuring certain aspects of the k8s rest client. * @export * @interface V1RESTClientConfiguration */ export interface V1RESTClientConfiguration { /** * * @type {V1RateLimiter} * @memberof V1RESTClientConfiguration */ rateLimiter?: V1RateLimiter; } export declare function V1RESTClientConfigurationFromJSON(json: any): V1RESTClientConfiguration; export declare function V1RESTClientConfigurationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1RESTClientConfiguration; export declare function V1RESTClientConfigurationToJSON(value?: V1RESTClientConfiguration | null): any;