Update a DBaaS PostgreSQL connection pool
Path parameters
-
Service name
Minimum length is
0
, maximum length is63
. -
Connection pool name
Minimum length is
1
, maximum length is63
.
Body Required
-
database-name string
Service database name
Minimum length is
1
, maximum length is40
. -
mode string
PGBouncer pool mode
Values are
transaction
,statement
, orsession
. -
size integer(int64)
Size of PGBouncer's PostgreSQL side connection pool
Minimum value is
1
, maximum value is10000
. -
username string
Pool username
Minimum length is
1
, maximum length is64
.
PUT /dbaas-postgres/{service-name}/connection-pool/{connection-pool-name}
curl \
-X PUT https://api-ch-gva-2.exoscale.com/v2/dbaas-postgres/{service-name}/connection-pool/{connection-pool-name} \
-H "Content-Type: application/json" \
-d '{"database-name":"string","mode":"transaction","size":42,"username":"string"}'
Request examples
{
"database-name": "string",
"mode": "transaction",
"size": 42,
"username": "string"
}
Response examples (200)
{
"id": "string",
"reason": "incorrect",
"reference": {
"id": "string",
"link": "string",
"command": "string"
},
"message": "string",
"state": "failure"
}