revokeRolePrivilege()
MilvusClient interface. This method revokes the role privilege.
R<RpcStatus> revokeRolePrivilege(RevokeRolePrivilegeParam requestParam);
RevokeRolePrivilegeParam
Use the RevokeRolePrivilegeParam.Builder
to construct a RevokeRolePrivilegeParam
object.
import io.milvus.param.RevokeRolePrivilegeParam;
RevokeRolePrivilegeParam.Builder builder = RevokeRolePrivilegeParam.newBuilder();
Methods of RevokeRolePrivilegeParam.Builder
:
Method |
Description |
Parameters |
---|---|---|
withRoleName(String roleName) |
Sets the roleName. RoleName cannot be empty or null. |
roleName: The role name. |
withObject(String object) |
Sets the object. object cannot be empty or null. |
object: A granted object in Milvus, such as collection, partition, and database. |
withObjectName(String objectName) |
Sets the objectName. objectName cannot be empty or null. |
objectName: The object name. |
withPrivilege(String privilege) |
Sets the privilege. privilege cannot be empty or null. |
privilege: A concrete permission for accessing some object. |
build() |
Construct a RevokeRolePrivilegeParam object. |
N/A |
The RevokeRolePrivilegeParam.Builder.build()
can throw the following exceptions:
- ParamException: error if the parameter is invalid.
Returns
This method catches all the exceptions and returns an R<RpcStatus>
object.
If the API fails on the server side, it returns the error code and message from the server.
If the API fails by RPC exception, it returns
R.Status.Unknown
and error message of the exception.If the API succeeds, it returns
R.Status.Success
.
Example
import io.milvus.param.RevokeRolePrivilegeParam;
R<RpcStatus> response = client.revokeRolePrivilege(RevokeRolePrivilegeParam.newBuilder()
.withRoleName(roleName)
.withObject(objectType)
.withObjectName(objectName)
.withPrivilege(privilege)
.build());
if (response.getStatus() != R.Status.Success.getCode()) {
throw new RuntimeException(response.getMessage());
}