addPrivilegesToGroup()
This operation adds privileges to a specific privilege group.
public Void addPrivilegesToGroup(AddPrivilegesToGroupReq request)
Request Syntax
addPrivilegesToGroup(AddPrivilegesToGroupReq.builder()
.groupName(String groupName)
.privileges(List<String> privileges)
.build()
)
BUILDER METHODS:
-
groupName(String groupName)
The name of the target privilege group.
-
privileges(List<String> privileges)
The privileges to be added into the specified privilege groups. For details on possible privileges, refer to Privileges.
RETURNS:
void
EXCEPTIONS:
-
MilvusClientExceptions
This exception will be raised when any error occurs during this operation.
Example
import io.milvus.v2.client.ConnectConfig
import io.milvus.v2.client.MilvusClientV2
import io.milvus.v2.service.rbac.request.CreateRoleReq
// 1. Set up a client
ConnectConfig connectConfig = ConnectConfig.builder()
.uri("YOUR_CLUSTER_ENDPOINT")
.token("YOUR_CLUSTER_TOKEN")
.build();
MilvusClientV2 client = new MilvusClientV2(connectConfig);
// 2. add privileges to group
List<String> privileges = new ArrayList<>();
privileges.add("Query", "Search")
AddPrivilegesToGroupReq addPrivilegesToGroupReq = AddPrivilegesToGroupReq.builder()
.groupName("read_only")
.privileges(privileges)
.build();
client.addPrivilegesToGroup(addPrivilegesToGroupReq);