create_connection_pool
Create a database connection pool to manage multiple connections for improved performance and resource efficiency in Vultr cloud infrastructure.
Instructions
Create a new connection pool.
Args: database_id: The database ID or label name: Connection pool name database: Target logical database name username: Database username for the pool mode: Pool mode (session, transaction, statement) size: Pool size (number of connections)
Returns: Created connection pool information
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database | Yes | ||
| database_id | Yes | ||
| mode | Yes | ||
| name | Yes | ||
| size | Yes | ||
| username | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "database": {
      "title": "Database",
      "type": "string"
    },
    "database_id": {
      "title": "Database Id",
      "type": "string"
    },
    "mode": {
      "title": "Mode",
      "type": "string"
    },
    "name": {
      "title": "Name",
      "type": "string"
    },
    "size": {
      "title": "Size",
      "type": "integer"
    },
    "username": {
      "title": "Username",
      "type": "string"
    }
  },
  "required": [
    "database_id",
    "name",
    "database",
    "username",
    "mode",
    "size"
  ],
  "type": "object"
}