原英文版地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/security-api-delete-privilege.html, 原文档版权归 www.elastic.co 所有
本地英文版地址: ../en/security-api-delete-privilege.html
本地英文版地址: ../en/security-api-delete-privilege.html
重要: 此版本不会发布额外的bug修复或文档更新。最新信息请参考 当前版本文档。
Delete application privileges APIedit
Removes application privileges.
Requestedit
DELETE /_security/privilege/<application>/<privilege>
Prerequisitesedit
To use this API, you must have either:
-
the
manage_securitycluster privilege (or a greater privilege such asall); or - the "Manage Application Privileges" global privilege for the application being referenced in the request
Path parametersedit
-
application - (Required, string) The name of the application. Application privileges are always associated with exactly one application.
-
privilege - (Required, string) The name of the privilege.
Examplesedit
The following example deletes the read application privilege from the
myapp application:
DELETE /_security/privilege/myapp/read
If the role is successfully deleted, the request returns {"found": true}.
Otherwise, found is set to false.
{
"myapp": {
"read": {
"found" : true
}
}
}