action cloudflare_get_table_maintenance_config { label: "Get table maintenance configuration" description: "Retrieve the maintenance configuration for a specific table,\nincluding compaction settings.\n" provider: cloudflare method: GET path: "/accounts/{account_id}/r2-catalog/{bucket_name}/namespaces/{namespace}/tables/{table_name}/maintenance-configs" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Use this to identify the account." } bucket_name: { type: "string" description: "Specifies the R2 bucket name." } namespace: { type: "string" } table_name: { type: "string" } } required: ["account_id", "bucket_name", "namespace", "table_name"] additionalProperties: false } output: { type: "object" } }