DigitalOcean-public.v2-new_Databases
Retrieve Autoscale Configuration for a Database Cluster
To retrieve the autoscale configuration for an existing database cluster, send a GET request to /v2/databases/$DATABASE_ID/autoscale. The response will be a JSON object with autoscaling configuration details.
get/v2/databases/{database_cluster_uuid}/autoscale
Path parameters
database_cluster_uuidstring uuid required
A unique identifier for a database cluster.
Response
A JSON object with autoscale configuration details.
Example response
{
"autoscale": {
"storage": {
"enabled": true,
"threshold_percent": 80,
"increment_gib": 10
}
}
}