action cloudflare_account_resource_group_list { label: "List Resource Groups" description: "List all the resource groups for an account." provider: cloudflare method: GET path: "/accounts/{account_id}/iam/resource_groups" encoding: json input: { type: "object" properties: { account_id: { description: "Account identifier tag." type: "object" } id: { description: "ID of the resource group to be fetched." type: "object" } name: { type: "string" description: "Name of the resource group to be fetched." } } required: ["account_id"] additionalProperties: false } output: { type: "object" } }