update_connection_pool
Modify connection pool settings for Vultr databases to adjust database name, username, mode, or size parameters for optimized performance.
Instructions
Update a connection pool configuration.
Args: database_id: The database ID or label pool_name: The connection pool name to update database: New target logical database name username: New database username mode: New pool mode (session, transaction, statement) size: New pool size
Returns: Updated connection pool information
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database | No | ||
| database_id | Yes | ||
| mode | No | ||
| pool_name | Yes | ||
| size | No | ||
| username | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "database": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Database"
    },
    "database_id": {
      "title": "Database Id",
      "type": "string"
    },
    "mode": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Mode"
    },
    "pool_name": {
      "title": "Pool Name",
      "type": "string"
    },
    "size": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Size"
    },
    "username": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Username"
    }
  },
  "required": [
    "database_id",
    "pool_name"
  ],
  "type": "object"
}