UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.58 kB
/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: unversioned * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { IoK8sApiFlowcontrolV1QueuingConfiguration } from './'; /** * LimitResponse defines how to handle requests that can not be executed right now. * @export * @interface IoK8sApiFlowcontrolV1LimitResponse */ export interface IoK8sApiFlowcontrolV1LimitResponse { /** * * @type {IoK8sApiFlowcontrolV1QueuingConfiguration} * @memberof IoK8sApiFlowcontrolV1LimitResponse */ queuing?: IoK8sApiFlowcontrolV1QueuingConfiguration; /** * `type` is "Queue" or "Reject". "Queue" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. "Reject" means that requests that can not be executed upon arrival are rejected. Required. * @type {string} * @memberof IoK8sApiFlowcontrolV1LimitResponse */ type: string; } export declare function IoK8sApiFlowcontrolV1LimitResponseFromJSON(json: any): IoK8sApiFlowcontrolV1LimitResponse; export declare function IoK8sApiFlowcontrolV1LimitResponseFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiFlowcontrolV1LimitResponse; export declare function IoK8sApiFlowcontrolV1LimitResponseToJSON(value?: IoK8sApiFlowcontrolV1LimitResponse | null): any;