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