action digitalocean_databases_get_ca { label: "Retrieve the Public Certificate" description: "To retrieve the public certificate used to secure the connection to the database cluster send a GET request to\n`/v2/databases/$DATABASE_ID/ca`.\n\nThe response will be a JSON object with a `ca` key. This will be set to an object\ncontaining the base64 encoding of the public key certificate.\n" provider: digitalocean method: GET path: "/v2/databases/{database_cluster_uuid}/ca" encoding: json input: { type: "object" properties: { database_cluster_uuid: { type: "string" format: "uuid" } } required: ["database_cluster_uuid"] additionalProperties: false } output: { type: "object" required: ["ca"] properties: { ca: { type: "object" required: ["certificate"] properties: { certificate: { type: "string" description: "base64 encoding of the certificate used to secure database connections" } } } } } }