# io.k8s.api.flowcontrol.v1.LimitResponse

From **Kubernetes**.

LimitResponse defines how to handle requests that can not be executed right now.

- Type: `object`

## Properties

### `queuing`

- Required: false
`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `"Queue"`.

### `type`

- Required: true
- Type: `string`

`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.

## JSON Schema

```json
{"description":"LimitResponse defines how to handle requests that can not be executed right now.","properties":{"queuing":{"allOf":[{"$ref":"#/components/schemas/io.k8s.api.flowcontrol.v1.QueuingConfiguration"}],"description":"`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`."},"type":{"default":"","description":"`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"}},"required":["type"],"type":"object","x-kubernetes-unions":[{"discriminator":"type","fields-to-discriminateBy":{"queuing":"Queuing"}}]}
```
