ServicePrincipalCreateParameters Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ServicePrincipalCreateParameters() |
Initialise une nouvelle instance de la classe ServicePrincipalCreateParameters. |
ServicePrincipalCreateParameters(String, String, Nullable<Boolean>, IList<KeyCredential>, IList<PasswordCredential>, String, IList<String>) |
Initialise une nouvelle instance de la classe ServicePrincipalCreateParameters. |
ServicePrincipalCreateParameters()
Initialise une nouvelle instance de la classe ServicePrincipalCreateParameters.
public ServicePrincipalCreateParameters ();
Public Sub New ()
S’applique à
ServicePrincipalCreateParameters(String, String, Nullable<Boolean>, IList<KeyCredential>, IList<PasswordCredential>, String, IList<String>)
Initialise une nouvelle instance de la classe ServicePrincipalCreateParameters.
public ServicePrincipalCreateParameters (string appId, string accountEnabled = default, bool? appRoleAssignmentRequired = default, System.Collections.Generic.IList<Microsoft.Azure.Graph.RBAC.Models.KeyCredential> keyCredentials = default, System.Collections.Generic.IList<Microsoft.Azure.Graph.RBAC.Models.PasswordCredential> passwordCredentials = default, string servicePrincipalType = default, System.Collections.Generic.IList<string> tags = default);
new Microsoft.Azure.Graph.RBAC.Models.ServicePrincipalCreateParameters : string * string * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Graph.RBAC.Models.KeyCredential> * System.Collections.Generic.IList<Microsoft.Azure.Graph.RBAC.Models.PasswordCredential> * string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Graph.RBAC.Models.ServicePrincipalCreateParameters
Public Sub New (appId As String, Optional accountEnabled As String = Nothing, Optional appRoleAssignmentRequired As Nullable(Of Boolean) = Nothing, Optional keyCredentials As IList(Of KeyCredential) = Nothing, Optional passwordCredentials As IList(Of PasswordCredential) = Nothing, Optional servicePrincipalType As String = Nothing, Optional tags As IList(Of String) = Nothing)
Paramètres
- appId
- String
L’ID de l'application.
- accountEnabled
- String
si le compte principal de service est activé ou non
Spécifie si un AppRoleAssignment à un utilisateur ou à un groupe est requis avant qu'Azure AD transmette un jeton utilisateur ou d'accès à l'application.
- keyCredentials
- IList<KeyCredential>
Collection d'informations d'identification de clé associées au principal du service.
- passwordCredentials
- IList<PasswordCredential>
Collection d'informations d'identification de mot de passe associées au principal du service.
- servicePrincipalType
- String
type du principal de service
Liste facultative des balises que vous pouvez appliquer à vos principaux de service. N'accepte pas la valeur NULL.
S’applique à
Azure SDK for .NET