update_user
Modify database user passwords or access permissions for Vultr-managed databases to maintain security and control access levels.
Instructions
Update a database user's password or permissions.
Args: database_id: The database ID or label username: The username to update password: New password access_level: New permission level (Kafka only)
Returns: Updated user information
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| access_level | No | ||
| database_id | Yes | ||
| password | No | ||
| username | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "access_level": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Access Level"
    },
    "database_id": {
      "title": "Database Id",
      "type": "string"
    },
    "password": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Password"
    },
    "username": {
      "title": "Username",
      "type": "string"
    }
  },
  "required": [
    "database_id",
    "username"
  ],
  "type": "object"
}