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