action cloudflare_access_identity_providers_get_an_access_identity_provider { label: "Get an Access identity provider" description: "Fetches a configured identity provider." provider: cloudflare method: GET path: "/accounts/{account_id}/access/identity_providers/{identity_provider_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } identity_provider_id: { type: "string" description: "UUID." } } required: ["account_id", "identity_provider_id"] additionalProperties: false } output: { type: "object" } }