You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Resolves the specified index expressions to return information about each cluster, including the local cluster, if included."
5
+
"description": "Resolves the specified index expressions to return information about each cluster. If no index expression is provided, this endpoint will return information about all the remote clusters that are configured on the local cluster."
6
6
},
7
7
"stability": "stable",
8
8
"visibility": "public",
@@ -11,6 +11,10 @@
11
11
},
12
12
"url": {
13
13
"paths": [
14
+
{
15
+
"path": "/_resolve/cluster",
16
+
"methods": ["GET"]
17
+
},
14
18
{
15
19
"path": "/_resolve/cluster/{name}",
16
20
"methods": ["GET"],
@@ -26,21 +30,25 @@
26
30
"params": {
27
31
"ignore_unavailable": {
28
32
"type": "boolean",
29
-
"description": "Whether specified concrete indices should be ignored when unavailable (missing or closed)"
33
+
"description": "Whether specified concrete indices should be ignored when unavailable (missing or closed). Only allowed when providing an index expression."
30
34
},
31
35
"ignore_throttled": {
32
36
"type": "boolean",
33
-
"description": "Whether specified concrete, expanded or aliased indices should be ignored when throttled"
37
+
"description": "Whether specified concrete, expanded or aliased indices should be ignored when throttled. Only allowed when providing an index expression."
34
38
},
35
39
"allow_no_indices": {
36
40
"type": "boolean",
37
-
"description": "Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)"
41
+
"description": "Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified). Only allowed when providing an index expression."
"description": "Whether wildcard expressions should get expanded to open or closed indices (default: open)"
47
+
"description": "Whether wildcard expressions should get expanded to open or closed indices (default: open). Only allowed when providing an index expression."
48
+
},
49
+
"timeout": {
50
+
"type": "time",
51
+
"description": "The maximum time to wait for remote clusters to respond"
0 commit comments