list_users
Retrieve all users and their permissions for a specified Vultr managed database using its ID or label.
Instructions
List all users in a managed database.
Args: database_id: The database ID or label (e.g., "my-mysql-db" or UUID)
Returns: List of database users with their permissions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_id": {
"title": "Database Id",
"type": "string"
}
},
"required": [
"database_id"
],
"type": "object"
}