public interface UsersResource
Modifier and Type | Method and Description |
---|---|
ApiUserList |
createUsers(ApiUserList users)
Creates a list of users.
|
ApiUser |
deleteUser(String userName)
Deletes a user from the system.
|
ApiUser |
readUser(String userName)
Returns detailed information about a user.
|
ApiUserList |
readUsers(DataView dataView)
Returns a list of the user names configured in the system.
|
ApiUser |
updateUser(String userName,
ApiUser user)
Updates the given user's information.
|
ApiUserList createUsers(ApiUserList users)
When creating new users, the password property of each user should be their plain text password. The returned user information will not contain any password information.
Only available with Cloudera Manager Enterprise Edition.users
- List of users to create.@PermitAll ApiUser deleteUser(String userName)
userName
- The name of the user to delete.ApiUser readUser(String userName)
userName
- The user to read.ApiUserList readUsers(DataView dataView)
@PermitAll ApiUser updateUser(String userName, ApiUser user)
userName
- User name being updated.user
- The user information.Copyright © Cloudera, Inc. Released under Apache License, Version 2.0.