原英文版地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/security-api-get-role-mapping.html, 原文档版权归 www.elastic.co 所有
本地英文版地址: ../en/security-api-get-role-mapping.html
本地英文版地址: ../en/security-api-get-role-mapping.html
重要: 此版本不会发布额外的bug修复或文档更新。最新信息请参考 当前版本文档。
Get role mappings APIedit
Retrieves role mappings.
Prerequisitesedit
-
To use this API, you must have at least the
manage_security
cluster privilege.
Descriptionedit
Role mappings define which roles are assigned to each user. For more information, see Mapping users and groups to roles.
The role mapping APIs are generally the preferred way to manage role mappings rather than using role mapping files. The get role mappings API cannot retrieve role mappings that are defined in role mapping files.
Path parametersedit
-
name
- (Optional, string) The distinct name that identifies the role mapping. The name is used solely as an identifier to facilitate interaction via the API; it does not affect the behavior of the mapping in any way. You can specify multiple mapping names as a comma-separated list. If you do not specify this parameter, the API returns information about all role mappings.
Response bodyedit
A successful call retrieves an object, where the keys are the names of the request mappings, and the values are the JSON representation of those mappings. For more information, see Role mapping resources.
Response codesedit
If there is no mapping with the requested name, the
response will have status code 404
.
Examplesedit
The following example retrieves information about the mapping1
role mapping:
GET /_security/role_mapping/mapping1
{ "mapping1": { "enabled": true, "roles": [ "user" ], "rules": { "field": { "username": "*" } }, "metadata": {} } }