2018-08-17 12:18:08 -04:00
|
|
|
[role="xpack"]
|
|
|
|
[[security-api-clear-role-cache]]
|
|
|
|
=== Clear roles cache API
|
2018-12-20 13:23:28 -05:00
|
|
|
++++
|
|
|
|
<titleabbrev>Clear roles cache</titleabbrev>
|
|
|
|
++++
|
2018-08-17 12:18:08 -04:00
|
|
|
|
|
|
|
Evicts roles from the native role cache.
|
|
|
|
|
|
|
|
==== Request
|
|
|
|
|
2018-12-11 04:13:10 -05:00
|
|
|
`POST /_security/role/<name>/_clear_cache`
|
2018-08-17 12:18:08 -04:00
|
|
|
|
|
|
|
==== Description
|
|
|
|
|
|
|
|
For more information about the native realm, see
|
|
|
|
{stack-ov}/realms.html[Realms] and <<configuring-native-realm>>.
|
|
|
|
|
|
|
|
==== Path Parameters
|
|
|
|
|
|
|
|
`name`::
|
|
|
|
(string) The name of the role.
|
|
|
|
|
|
|
|
|
|
|
|
//==== Request Body
|
|
|
|
|
|
|
|
==== Authorization
|
|
|
|
|
|
|
|
To use this API, you must have at least the `manage_security` cluster
|
|
|
|
privilege.
|
|
|
|
|
|
|
|
|
|
|
|
==== Examples
|
|
|
|
|
|
|
|
The clear roles cache API evicts roles from the native role cache. For example,
|
|
|
|
to clear the cache for `my_admin_role`:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2018-12-11 04:13:10 -05:00
|
|
|
POST /_security/role/my_admin_role/_clear_cache
|
2018-08-17 12:18:08 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|