Package com.daml.ledger.api.v1.admin
Class UserManagementServiceGrpc.UserManagementServiceBlockingStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractBlockingStub<UserManagementServiceGrpc.UserManagementServiceBlockingStub>
-
- com.daml.ledger.api.v1.admin.UserManagementServiceGrpc.UserManagementServiceBlockingStub
-
- Enclosing class:
- UserManagementServiceGrpc
public static final class UserManagementServiceGrpc.UserManagementServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub<UserManagementServiceGrpc.UserManagementServiceBlockingStub>
Service to manage users and their rights for interacting with the Ledger API served by a participant node. The authorization rules for its RPCs are specified on the ``<RpcName>Request`` messages as boolean expressions over these two facts: (1) ``HasRight(r)`` denoting whether the authenticated user has right ``r`` and (2) ``IsAuthenticatedUser(uid)`` denoting whether ``uid`` is the empty string or equal to the id of the authenticated user.
-
-
Method Summary
-
-
-
Method Detail
-
build
protected UserManagementServiceGrpc.UserManagementServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<UserManagementServiceGrpc.UserManagementServiceBlockingStub>
-
createUser
public UserManagementServiceOuterClass.CreateUserResponse createUser(UserManagementServiceOuterClass.CreateUserRequest request)
Create a new user. Errors: - ``ALREADY_EXISTS``: if the user already exists - ``UNAUTHENTICATED``: if the request does not include a valid access token - ``PERMISSION_DENIED``: if the claims in the token are insufficient to perform a given operation - ``INVALID_ARGUMENT``: if the payload is malformed or is missing required fields
-
getUser
public UserManagementServiceOuterClass.GetUserResponse getUser(UserManagementServiceOuterClass.GetUserRequest request)
Get the user data of a specific user or the authenticated user. Errors: - ``NOT_FOUND``: if the user doesn't exist - ``UNAUTHENTICATED``: if the request does not include a valid access token - ``PERMISSION_DENIED``: if the claims in the token are insufficient to perform a given operation - ``INVALID_ARGUMENT``: if the payload is malformed or is missing required fields
-
deleteUser
public UserManagementServiceOuterClass.DeleteUserResponse deleteUser(UserManagementServiceOuterClass.DeleteUserRequest request)
Delete an existing user and all its rights. Errors: - ``NOT_FOUND``: if the user doesn't exist - ``UNAUTHENTICATED``: if the request does not include a valid access token - ``PERMISSION_DENIED``: if the claims in the token are insufficient to perform a given operation - ``INVALID_ARGUMENT``: if the payload is malformed or is missing required fields
-
listUsers
public UserManagementServiceOuterClass.ListUsersResponse listUsers(UserManagementServiceOuterClass.ListUsersRequest request)
List all existing users. Errors: - ``UNAUTHENTICATED``: if the request does not include a valid access token - ``PERMISSION_DENIED``: if the claims in the token are insufficient to perform a given operation - ``INVALID_ARGUMENT``: if the payload is malformed or is missing required fields
-
grantUserRights
public UserManagementServiceOuterClass.GrantUserRightsResponse grantUserRights(UserManagementServiceOuterClass.GrantUserRightsRequest request)
Grant rights to a user. Errors: - ``NOT_FOUND``: if the user doesn't exist - ``UNAUTHENTICATED``: if the request does not include a valid access token - ``PERMISSION_DENIED``: if the claims in the token are insufficient to perform a given operation - ``INVALID_ARGUMENT``: if the payload is malformed or is missing required fields
-
revokeUserRights
public UserManagementServiceOuterClass.RevokeUserRightsResponse revokeUserRights(UserManagementServiceOuterClass.RevokeUserRightsRequest request)
Revoke rights from a user. Errors: - ``NOT_FOUND``: if the user doesn't exist - ``UNAUTHENTICATED``: if the request does not include a valid access token - ``PERMISSION_DENIED``: if the claims in the token are insufficient to perform a given operation - ``INVALID_ARGUMENT``: if the payload is malformed or is missing required fields
-
listUserRights
public UserManagementServiceOuterClass.ListUserRightsResponse listUserRights(UserManagementServiceOuterClass.ListUserRightsRequest request)
List the set of all rights granted to a user. Errors: - ``NOT_FOUND``: if the user doesn't exist - ``UNAUTHENTICATED``: if the request does not include a valid access token - ``PERMISSION_DENIED``: if the claims in the token are insufficient to perform a given operation - ``INVALID_ARGUMENT``: if the payload is malformed or is missing required fields
-
-