Get site(s) OpenSearch indices
GET/sites/:siteId/opensearch/indices
Returns the OpenSearch indices
Request
Path Parameters
siteId stringrequired
Site Identifier
Responses
- 200
200 OK
Response Headers
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
indices
object[]
OpenSearch Indices
numberOfReplicas string
The number of replicas per shard
numberOfShards string
The number of shards in index
documentCount string
The number of documents in index
storeSize string
The store size of the index
name string
Name of Index
aliases
object[]
name string
Name of Alias
{
"indices": [
{
"numberOfReplicas": "string",
"numberOfShards": "string",
"documentCount": "string",
"storeSize": "string",
"name": "string",
"aliases": [
{
"name": "string"
}
]
}
]
}
Loading...