import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Identity Provider details. * * Uses Azure REST API version 2022-09-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-08-01. * * Other available API versions: 2021-04-01-preview, 2021-08-01, 2021-12-01-preview, 2022-04-01-preview, 2022-08-01, 2023-03-01-preview, 2023-05-01-preview, 2023-09-01-preview, 2024-05-01, 2024-06-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native apimanagement [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare class IdentityProvider extends pulumi.CustomResource { /** * Get an existing IdentityProvider resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): IdentityProvider; /** @internal */ static readonly __pulumiType = "azure-native:apimanagement:IdentityProvider"; /** * Returns true if the given object is an instance of IdentityProvider. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is IdentityProvider; /** * List of Allowed Tenants when configuring Azure Active Directory login. */ readonly allowedTenants: pulumi.Output; /** * OpenID Connect discovery endpoint hostname for AAD or AAD B2C. */ readonly authority: pulumi.Output; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output; /** * Client Id of the Application in the external Identity Provider. It is App ID for Facebook login, Client ID for Google login, App ID for Microsoft. */ readonly clientId: pulumi.Output; /** * The client library to be used in the developer portal. Only applies to AAD and AAD B2C Identity Provider. */ readonly clientLibrary: pulumi.Output; /** * Client secret of the Application in external Identity Provider, used to authenticate login request. For example, it is App Secret for Facebook login, API Key for Google login, Public Key for Microsoft. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value. */ readonly clientSecret: pulumi.Output; /** * The name of the resource */ readonly name: pulumi.Output; /** * Password Reset Policy Name. Only applies to AAD B2C Identity Provider. */ readonly passwordResetPolicyName: pulumi.Output; /** * Profile Editing Policy Name. Only applies to AAD B2C Identity Provider. */ readonly profileEditingPolicyName: pulumi.Output; /** * Signin Policy Name. Only applies to AAD B2C Identity Provider. */ readonly signinPolicyName: pulumi.Output; /** * The TenantId to use instead of Common when logging into Active Directory */ readonly signinTenant: pulumi.Output; /** * Signup Policy Name. Only applies to AAD B2C Identity Provider. */ readonly signupPolicyName: pulumi.Output; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output; /** * Create a IdentityProvider resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: IdentityProviderArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a IdentityProvider resource. */ export interface IdentityProviderArgs { /** * List of Allowed Tenants when configuring Azure Active Directory login. */ allowedTenants?: pulumi.Input[]>; /** * OpenID Connect discovery endpoint hostname for AAD or AAD B2C. */ authority?: pulumi.Input; /** * Client Id of the Application in the external Identity Provider. It is App ID for Facebook login, Client ID for Google login, App ID for Microsoft. */ clientId: pulumi.Input; /** * The client library to be used in the developer portal. Only applies to AAD and AAD B2C Identity Provider. */ clientLibrary?: pulumi.Input; /** * Client secret of the Application in external Identity Provider, used to authenticate login request. For example, it is App Secret for Facebook login, API Key for Google login, Public Key for Microsoft. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value. */ clientSecret: pulumi.Input; /** * Identity Provider Type identifier. */ identityProviderName?: pulumi.Input; /** * Password Reset Policy Name. Only applies to AAD B2C Identity Provider. */ passwordResetPolicyName?: pulumi.Input; /** * Profile Editing Policy Name. Only applies to AAD B2C Identity Provider. */ profileEditingPolicyName?: pulumi.Input; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input; /** * The name of the API Management service. */ serviceName: pulumi.Input; /** * Signin Policy Name. Only applies to AAD B2C Identity Provider. */ signinPolicyName?: pulumi.Input; /** * The TenantId to use instead of Common when logging into Active Directory */ signinTenant?: pulumi.Input; /** * Signup Policy Name. Only applies to AAD B2C Identity Provider. */ signupPolicyName?: pulumi.Input; /** * Identity Provider Type identifier. */ type?: pulumi.Input; }