pydo.databases.install_update()
Generated on 18 Nov 2025
from pydo version
v0.21.0
Description
To start the installation of updates for a database cluster, send a PUT request to /v2/databases/$DATABASE_ID/install_update.
A successful request will receive a 204 No Content status code with no body in response.
Parameters
| Name | Type | Required | Description | Default Value |
|---|---|---|---|---|
database_cluster_uuid |
string | True | A unique identifier for a database cluster. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
update_resp = client.databases.install_update(database_cluster_uuid="a7a8bas")More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.