Share via


IdentityProviderUpdateParameters Constructors

Definition

Overloads

IdentityProviderUpdateParameters()

Initializes a new instance of the IdentityProviderUpdateParameters class.

IdentityProviderUpdateParameters(String, String, IList<String>, String, String, String, String, String, String, String)

Initializes a new instance of the IdentityProviderUpdateParameters class.

IdentityProviderUpdateParameters()

Initializes a new instance of the IdentityProviderUpdateParameters class.

public IdentityProviderUpdateParameters ();
Public Sub New ()

Applies to

IdentityProviderUpdateParameters(String, String, IList<String>, String, String, String, String, String, String, String)

Initializes a new instance of the IdentityProviderUpdateParameters class.

public IdentityProviderUpdateParameters (string type = default, string signinTenant = default, System.Collections.Generic.IList<string> allowedTenants = default, string authority = default, string signupPolicyName = default, string signinPolicyName = default, string profileEditingPolicyName = default, string passwordResetPolicyName = default, string clientId = default, string clientSecret = default);
new Microsoft.Azure.Management.ApiManagement.Models.IdentityProviderUpdateParameters : string * string * System.Collections.Generic.IList<string> * string * string * string * string * string * string * string -> Microsoft.Azure.Management.ApiManagement.Models.IdentityProviderUpdateParameters
Public Sub New (Optional type As String = Nothing, Optional signinTenant As String = Nothing, Optional allowedTenants As IList(Of String) = Nothing, Optional authority As String = Nothing, Optional signupPolicyName As String = Nothing, Optional signinPolicyName As String = Nothing, Optional profileEditingPolicyName As String = Nothing, Optional passwordResetPolicyName As String = Nothing, Optional clientId As String = Nothing, Optional clientSecret As String = Nothing)

Parameters

type
String

Identity Provider Type identifier. Possible values include: 'facebook', 'google', 'microsoft', 'twitter', 'aad', 'aadB2C'

signinTenant
String

The TenantId to use instead of Common when logging into Active Directory

allowedTenants
IList<String>

List of Allowed Tenants when configuring Azure Active Directory login.

authority
String

OpenID Connect discovery endpoint hostname for AAD or AAD B2C.

signupPolicyName
String

Signup Policy Name. Only applies to AAD B2C Identity Provider.

signinPolicyName
String

Signin Policy Name. Only applies to AAD B2C Identity Provider.

profileEditingPolicyName
String

Profile Editing Policy Name. Only applies to AAD B2C Identity Provider.

passwordResetPolicyName
String

Password Reset Policy Name. Only applies to AAD B2C Identity Provider.

clientId
String

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.

clientSecret
String

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.

Applies to