action digitalocean_databases_list { label: "List All Databases" description: "To list all of the databases in a clusters, send a GET request to\n`/v2/databases/$DATABASE_ID/dbs`.\n\nThe result will be a JSON object with a `dbs` key. This will be set to an array\nof database objects, each of which will contain the standard database attributes.\n\nNote: Database management is not supported for Redis clusters.\n" provider: digitalocean method: GET path: "/v2/databases/{database_cluster_uuid}/dbs" encoding: json input: { type: "object" properties: { database_cluster_uuid: { type: "string" format: "uuid" } } required: ["database_cluster_uuid"] additionalProperties: false } output: { properties: { dbs: { type: "array" items: { type: "object" required: ["name"] properties: { name: { type: "string" description: "The name of the database." } } } } } } }