updateRole #
Performs a partial update on an existing role.
updateRole(id, content, [options], [callback]) #
Arguments | Type | Description |
---|---|---|
id | string | Unique role identifier |
content | JSON Object | A plain JSON object representing the role |
options | string | (Optional) Optional arguments |
callback | function | (Optional) Callback handling the response |
Options #
Filter | Type | Description | Default |
---|---|---|---|
queuable | boolean | Make this request queuable or not | true |
refresh | string | If set to wait_for , Kuzzle will wait for the persistence layer to finish indexing (available with Elasticsearch 5.x and above) | undefined |
Return Value #
Returns the Security
object to allow chaining.
Callback Response #
Returns an updated Role object.
Usage #
JSONObject roleDefinition = new JSONObject()
.put("controllers", new JSONObject()
.put("*", new JSONObject()
.put("actions", new JSONObject()
.put("*", true)
)
)
)
);
kuzzle
.security
.updateRole("Role ID", roleDefinition, new ResponseListener<Role>() {
@Override
public void onSuccess(Role role) {
}
@Override
public void onError(JSONObject error) {
}
});
Edit this page on Github(opens new window)