rest-api-spec.api.security.get_privileges.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-spec Show documentation
Show all versions of rest-api-spec Show documentation
Elasticsearch subproject :rest-api-spec
{
"security.get_privileges":{
"documentation":{
"url":"https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-privileges.html",
"description":"Retrieves application privileges."
},
"stability":"stable",
"visibility":"public",
"headers":{
"accept": [ "application/json"]
},
"url":{
"paths":[
{
"path":"/_security/privilege",
"methods":[
"GET"
]
},
{
"path":"/_security/privilege/{application}",
"methods":[
"GET"
],
"parts":{
"application":{
"type":"string",
"description":"Application name"
}
}
},
{
"path":"/_security/privilege/{application}/{name}",
"methods":[
"GET"
],
"parts":{
"application":{
"type":"string",
"description":"Application name"
},
"name":{
"type":"string",
"description":"Privilege name"
}
}
}
]
},
"params":{}
}
}