action cloudflare_tags_list { label: "List tagged resources" description: "Lists all tagged resources for an account." provider: cloudflare method: GET path: "/accounts/{account_id}/tags/resources" encoding: json input: { type: "object" properties: { account_id: { type: "object" } id: { type: "array" items: { type: "string" description: "Identifies the unique resource." } } name: { type: "string" } type: { type: "array" items: { type: "string" description: "Identifies the type of resource." enum: ["access_application", "access_application_policy", "access_group", "account", "account_ruleset", "ai_gateway", "alerting_policy", "alerting_webhook", "api_gateway_operation", "cloudflared_tunnel", "custom_certificate", "custom_hostname", "d1_database", "dns_record", "durable_object_namespace", "gateway_list", "gateway_rule", "healthcheck", "image", "infrastructure_target", "kv_namespace", "load_balancer", "load_balancer_monitor", "load_balancer_pool", "managed_client_certificate", "pages_project", "queue", "r2_bucket", "resource_share", "stream_live_input", "stream_video", "vectorize_index", "worker", "worker_route", "worker_version", "zone", "zone_ruleset"] } } } required: ["account_id"] additionalProperties: false } output: { type: "object" } }