[DOCS] Fix list dangling indices documentation (#60099)

This commit fixes the list dangling indices response.
The dangling_indices array is an array of objects
that represent aggregated dangling index information

(cherry picked from commit 24c72d4e71c95f2d7690090933e0657152f6af9b)
This commit is contained in:
Russ Cam 2020-08-04 10:29:44 +10:00 committed by Russ Cam
parent f99584c6f3
commit 667309e6a6

View File

@ -38,12 +38,14 @@ The API returns the following response:
-------------------------------------------------- --------------------------------------------------
{ {
"dangling_indices": [ "dangling_indices": [
{
"index_name": "my-index-000001", "index_name": "my-index-000001",
"index_uuid": "zmM4e0JtBkeUjiHD-MihPQ", "index_uuid": "zmM4e0JtBkeUjiHD-MihPQ",
"creation_date_millis": 1589414451372, "creation_date_millis": 1589414451372,
"node_ids": [ "node_ids": [
"pL47UN3dAb2d5RCWP6lQ3e" "pL47UN3dAb2d5RCWP6lQ3e"
] ]
}
] ]
} }
-------------------------------------------------- --------------------------------------------------