action digitalocean_databases_get { label: "Retrieve an Existing Database" description: "To show information about an existing database cluster, send a GET request to\n`/v2/databases/$DATABASE_ID/dbs/$DB_NAME`.\n\nNote: Database management is not supported for Redis clusters.\n\nThe response will be a JSON object with a `db` key. This will be set to an object\ncontaining the standard database attributes.\n" provider: digitalocean method: GET path: "/v2/databases/{database_cluster_uuid}/dbs/{database_name}" encoding: json input: { type: "object" properties: { database_cluster_uuid: { type: "string" format: "uuid" } database_name: { type: "string" } } required: ["database_cluster_uuid", "database_name"] additionalProperties: false } output: { type: "object" required: ["db"] properties: { db: { type: "object" required: ["name"] properties: { name: { type: "string" description: "The name of the database." } } } } } }