DigitalOcean-public.v2-new_Databases
Configure Autoscale Settings for a Database Cluster
To configure autoscale settings for an existing database cluster, send a PUT request to /v2/databases/$DATABASE_ID/autoscale, specifying the autoscale configuration. A successful request will receive a 204 No Content status code with no body in response.
put/v2/databases/{database_cluster_uuid}/autoscale
Path parameters
database_cluster_uuidstring uuid required
A unique identifier for a database cluster.
Request body
Example request
{
"storage": {
"enabled": true,
"threshold_percent": 80,
"increment_gib": 10
}
}Response
The action was successful and the response body is empty.