class Milvus::Users
def describe(user_name:)
-
(Hash)
- Server response
Parameters:
-
user_name
(String
) -- Username for the user
def describe(user_name:) response = client.connection.post("#{PATH}/describe") do |req| req.body = { userName: user_name } end response.body end