CreateRole()
Create a role with specific privileges.
Status CreateRole(const CreateRoleRequest& request)
Request Syntax
auto request = CreateRoleRequest()
.WithRoleName(name)
.WithDescription(description);
REQUEST METHODS:
WithRoleName(const std::string& name)Set name of the role.
WithDescription(const std::string& description)Set description of the role.
RETURNS:
Status
Returns a status indicating whether the operation succeeded.
ERROR HANDLING:
std::exception
Thrown when request construction, transport, or response processing fails. Inspect the exception message or returned Status for failure details.
Example
Demonstrates CreateRole() with the C++ SDK.
auto client = milvus::MilvusClientV2::Create();
milvus::ConnectParam connect_param{"http://localhost:19530", "root:Milvus"};
util::CheckStatus(client->Connect(connect_param));
auto request = milvus::CreateRoleRequest();
util::CheckStatus(client->CreateRole(request));