create()
This operation creates the current role.
Request Syntax
create()
PARAMETERS:
N/A
RETURN TYPE:
NoneType
RETURNS:
None
EXCEPTIONS:
MilvusException
This exception will be raised when any error occurs during this operation.
Examples
from pymilvus import Role, utility
# Get an existing role
role = Role(name="test")
# Create a new role
role.create()
# List all roles
roles = utility.list_roles(include_user_info=True)
# Output
# RoleInfo groups:
# - RoleItem: <role_name:admin>, <users:('admin',)>
# - RoleItem: <role_name:public>, <users:()>
# - RoleItem: <role_name:test>, <users:()>
Related operations
The following operations are related to create()
: