list_usernames()
This operation lists the names of all existing users.
Request Syntax
list_usernames(
using: str,
timeout: float | None
)
PARAMETERS:
using (str) -
The alias of the employed connection.
The default value is default, indicating that this operation employs the default connection.
timeout (float | None)
The timeout duration for this operation. Setting this to None indicates that this operation timeouts when any response arrives or any error occurs.
RETURN TYPE:
list
RETURNS:
A list that contains the names of all existing users.
EXCEPTIONS:
MilvusException
This exception will be raised when any error occurs during this operation.
Examples
from pymilvus import connections, utility
# Connection to localhost:19530
connections.connect()
# List all existing usernames
users = utility.list_usernames()