Properties
| Name | Type | Description |
|---|---|---|
| mode | string | The mode of the index. Possible values: `OnDemand` or `Dedicated`. Defaults to `OnDemand`. If set to `Dedicated`, `dedicated.node_type`, and `dedicated.scaling` must be specified. |
| dedicated | object | |
| status | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReadCapacityDedicatedSpecResponse",
"title": "Dedicated",
"example": {
"dedicated": {
"manual": {
"replicas": 2,
"shards": 2
},
"node_type": "t1",
"scaling": "Manual"
},
"mode": "Dedicated",
"status": {
"current_replicas": 2,
"current_shards": 2,
"state": "Ready"
}
},
"type": "object",
"properties": {
"mode": {
"description": "The mode of the index. Possible values: `OnDemand` or `Dedicated`. Defaults to `OnDemand`. If set to `Dedicated`, `dedicated.node_type`, and `dedicated.scaling` must be specified.",
"type": "string"
},
"dedicated": {
"$ref": "#/components/schemas/ReadCapacityDedicatedConfig"
},
"status": {
"$ref": "#/components/schemas/ReadCapacityStatus"
}
},
"required": [
"mode",
"dedicated",
"status"
],
"additionalProperties": false
}