pydo.databases.update_autoscale()
Generated on 3 Aug 2026
from pydo version
v0.40.0
Usage
client.databases.update_autoscale(
database_cluster_uuid="9cc10173-e9ea-4176-9dbc-a4cee4c4ff30",
body={
"storage": {...},
},
)Description
To configure autoscale settings for an existing database cluster, send a PUT request to /v2/databases/{database_cluster_uuid}/autoscale, specifying the autoscale configuration.
A successful request will receive a 204 No Content status code with no body in response.
Parameters
database_cluster_uuidstring requiredA unique identifier for a database cluster.
storageobject optionalShow child properties
enabledboolean requiredExample:
TrueWhether storage autoscaling is enabled for the cluster
threshold_percentinteger optionalExample:
80The storage usage threshold percentage that triggers autoscaling. When storage usage exceeds this percentage, additional storage will be added automatically.
increment_gibinteger optionalExample:
10The amount of additional storage to add (in GiB) when autoscaling is triggered
Request Sample
More Information
See /v2/databases/{database_cluster_uuid}/autoscale in the API reference for additional detail on responses, headers, parameters, and more.