delete_user
Remove a database user from a Vultr database instance by specifying the database ID and username to maintain access control and security.
Instructions
Delete a database user.
Args: database_id: The database ID or label username: The username to delete
Returns: Status message confirming deletion
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_id | Yes | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_id": {
"title": "Database Id",
"type": "string"
},
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"database_id",
"username"
],
"type": "object"
}