-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathindices.delete_alias.json
55 lines (55 loc) · 1.67 KB
/
indices.delete_alias.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"indices.delete_alias": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-aliases.html",
"description": "Deletes an alias."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/{index}/_alias/{name}",
"methods": ["DELETE"],
"parts": {
"index": {
"type": "list",
"description": "A comma-separated list of index names (supports wildcards); use `_all` for all indices"
},
"name": {
"type": "list",
"description": "A comma-separated list of aliases to delete (supports wildcards); use `_all` to delete all aliases for the specified indices."
}
}
},
{
"path": "/{index}/_aliases/{name}",
"methods": ["DELETE"],
"parts": {
"index": {
"type": "list",
"description": "A comma-separated list of index names (supports wildcards); use `_all` for all indices"
},
"name": {
"type": "list",
"description": "A comma-separated list of aliases to delete (supports wildcards); use `_all` to delete all aliases for the specified indices."
}
}
}
]
},
"params": {
"timeout": {
"type": "time",
"description": "Explicit timestamp for the document"
},
"master_timeout": {
"type": "time",
"description": "Specify timeout for connection to master"
}
}
}
}