linode · Schema
NodeBalancerRequest
Properties
| Name | Type | Description |
|---|---|---|
| region | string | The region for the new NodeBalancer. |
| label | string | The label for the new NodeBalancer. |
| client_conn_throttle | integer | Throttle connections per second. |
| tags | array | Tags for the new NodeBalancer. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/NodeBalancerRequest",
"title": "NodeBalancerRequest",
"type": "object",
"required": [
"region"
],
"properties": {
"region": {
"type": "string",
"description": "The region for the new NodeBalancer."
},
"label": {
"type": "string",
"minLength": 3,
"maxLength": 32,
"description": "The label for the new NodeBalancer."
},
"client_conn_throttle": {
"type": "integer",
"minimum": 0,
"maximum": 20,
"description": "Throttle connections per second."
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tags for the new NodeBalancer."
}
}
}