action digitalocean_databases_list_backups { label: "List Backups for a Database Cluster" description: "To list all of the available backups of a PostgreSQL or MySQL database cluster, send a GET request to `/v2/databases/$DATABASE_ID/backups`.\n**Note**: Backups are not supported for Redis clusters.\nThe result will be a JSON object with a `backups key`. This will be set to an array of backup objects, each of which will contain the size of the backup and the timestamp at which it was created." provider: digitalocean method: GET path: "/v2/databases/{database_cluster_uuid}/backups" encoding: json input: { type: "object" properties: { database_cluster_uuid: { type: "string" format: "uuid" } } required: ["database_cluster_uuid"] additionalProperties: false } output: { type: "object" required: ["backups"] properties: { backups: { type: "array" items: { type: "object" required: ["created_at", "size_gigabytes"] properties: { created_at: { type: "string" format: "date-time" description: "A time value given in ISO8601 combined date and time format at which the backup was created." } size_gigabytes: { type: "number" description: "The size of the database backup in GBs." } } } } } } }