-
Notifications
You must be signed in to change notification settings - Fork 80
/
cluster.post_voting_config_exclusions.json
41 lines (41 loc) · 1.28 KB
/
cluster.post_voting_config_exclusions.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"cluster.post_voting_config_exclusions": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/voting-config-exclusions.html",
"description": "Updates the cluster voting config exclusions by node ids or node names."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_cluster/voting_config_exclusions",
"methods": ["POST"]
}
]
},
"params": {
"node_ids": {
"type": "string",
"description": "A comma-separated list of the persistent ids of the nodes to exclude from the voting configuration. If specified, you may not also specify ?node_names."
},
"node_names": {
"type": "string",
"description": "A comma-separated list of the names of the nodes to exclude from the voting configuration. If specified, you may not also specify ?node_ids."
},
"timeout": {
"type": "time",
"description": "Explicit operation timeout",
"default": "30s"
},
"master_timeout": {
"type": "time",
"description": "Timeout for submitting request to master",
"default": "30s"
}
}
}
}