-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathsecurity.delete_privileges.json
38 lines (38 loc) · 1.13 KB
/
security.delete_privileges.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
{
"security.delete_privileges": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-delete-privilege.html",
"description": "Removes application privileges."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_security/privilege/{application}/{name}",
"methods": ["DELETE"],
"parts": {
"application": {
"type": "string",
"description": "Application name"
},
"name": {
"type": "string",
"description": "Privilege name"
}
}
}
]
},
"params": {
"refresh": {
"type": "enum",
"options": ["true", "false", "wait_for"],
"description": "If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes."
}
}
}
}