pydo.databases.update_connection_pool()
Generated on 12 Dec 2025
from pydo version
v0.22.0
Description
To update a connection pool for a PostgreSQL database cluster, send a PUT request to /v2/databases/$DATABASE_ID/pools/$POOL_NAME.
Parameters
| Name | Type | Required | Description | Default Value |
|---|---|---|---|---|
database_cluster_uuid |
string | True | A unique identifier for a database cluster. | |
pool_name |
string | True | The name used to identify the connection pool. | |
body |
JSON or IO[bytes] | True |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
req = {
"mode": "transaction",
"size": 10,
"db": "defaultdb",
"user": "doadmin"
}
update_resp = client.databases.update_connection_pool(database_cluster_uuid="a7a8bas", pool_name="conn_pool", body=req)More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.