action cloudflare_get_maintenance_config { label: "Get catalog maintenance configuration" description: "Retrieve the maintenance configuration for a specific catalog,\nincluding compaction settings and credential status.\n" provider: cloudflare method: GET path: "/accounts/{account_id}/r2-catalog/{bucket_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." } } required: ["account_id", "bucket_name"] additionalProperties: false } output: { type: "object" } }