action digitalocean_databases_get_sql_mode { label: "Retrieve the SQL Modes for a MySQL Cluster" description: "To retrieve the configured SQL modes for an existing MySQL cluster, send a GET request to `/v2/databases/$DATABASE_ID/sql_mode`.\nThe response will be a JSON object with a `sql_mode` key. This will be set to a string representing the configured SQL modes." provider: digitalocean method: GET path: "/v2/databases/{database_cluster_uuid}/sql_mode" encoding: json input: { type: "object" properties: { database_cluster_uuid: { type: "string" format: "uuid" } } required: ["database_cluster_uuid"] additionalProperties: false } output: { type: "object" required: ["sql_mode"] properties: { sql_mode: { type: "string" description: "A string specifying the configured SQL modes for the MySQL cluster." } } } }