action cloudflare_share_resources_list { label: "List share resources by share ID" description: "List share resources by share ID." provider: cloudflare method: GET path: "/accounts/{account_id}/shares/{share_id}/resources" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Account identifier." } share_id: { type: "string" description: "Share identifier tag." } } required: ["account_id", "share_id"] additionalProperties: false } output: { type: "object" } }