import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZeroTrustAccessIdentityProvider = cloudflare.getZeroTrustAccessIdentityProvider({ * identityProviderId: "f174e90a-fafe-4643-bbbc-4a0ed4fc8415", * accountId: "account_id", * zoneId: "zone_id", * }); * ``` */ export declare function getZeroTrustAccessIdentityProvider(args?: GetZeroTrustAccessIdentityProviderArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getZeroTrustAccessIdentityProvider. */ export interface GetZeroTrustAccessIdentityProviderArgs { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ accountId?: string; filter?: inputs.GetZeroTrustAccessIdentityProviderFilter; /** * UUID. */ identityProviderId?: string; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zoneId?: string; } /** * A collection of values returned by getZeroTrustAccessIdentityProvider. */ export interface GetZeroTrustAccessIdentityProviderResult { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ readonly accountId?: string; /** * The configuration parameters for the identity provider. To view the required parameters for a specific provider, refer to our [developer documentation](https://developers.cloudflare.com/cloudflare-one/identity/idp-integration/). */ readonly config: outputs.GetZeroTrustAccessIdentityProviderConfig; readonly filter?: outputs.GetZeroTrustAccessIdentityProviderFilter; /** * UUID. */ readonly id: string; /** * UUID. */ readonly identityProviderId?: string; /** * The name of the identity provider, shown to users on the login page. */ readonly name: string; /** * The configuration settings for enabling a System for Cross-Domain Identity Management (SCIM) with the identity provider. */ readonly scimConfig: outputs.GetZeroTrustAccessIdentityProviderScimConfig; /** * The type of identity provider. To determine the value for a specific provider, refer to our [developer documentation](https://developers.cloudflare.com/cloudflare-one/identity/idp-integration/). * Available values: "onetimepin", "azureAD", "saml", "centrify", "facebook", "github", "google-apps", "google", "linkedin", "oidc", "okta", "onelogin", "pingone", "yandex". */ readonly type: string; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ readonly zoneId?: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZeroTrustAccessIdentityProvider = cloudflare.getZeroTrustAccessIdentityProvider({ * identityProviderId: "f174e90a-fafe-4643-bbbc-4a0ed4fc8415", * accountId: "account_id", * zoneId: "zone_id", * }); * ``` */ export declare function getZeroTrustAccessIdentityProviderOutput(args?: GetZeroTrustAccessIdentityProviderOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getZeroTrustAccessIdentityProvider. */ export interface GetZeroTrustAccessIdentityProviderOutputArgs { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ accountId?: pulumi.Input; filter?: pulumi.Input; /** * UUID. */ identityProviderId?: pulumi.Input; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zoneId?: pulumi.Input; }