Partager via


BatchAccountIdentity Constructeurs

Définition

Surcharges

BatchAccountIdentity()

Initialise une nouvelle instance de la classe BatchAccountIdentity.

BatchAccountIdentity(ResourceIdentityType, IDictionary<String,BatchAccountIdentityUserAssignedIdentitiesValue>)
Obsolète.
BatchAccountIdentity(ResourceIdentityType, IDictionary<String,UserAssignedIdentities>)
BatchAccountIdentity(ResourceIdentityType, String, String, IDictionary<String,UserAssignedIdentities>)

Initialise une nouvelle instance de la classe BatchAccountIdentity.

BatchAccountIdentity()

Initialise une nouvelle instance de la classe BatchAccountIdentity.

public BatchAccountIdentity ();
Public Sub New ()

S’applique à

BatchAccountIdentity(ResourceIdentityType, IDictionary<String,BatchAccountIdentityUserAssignedIdentitiesValue>)

Attention

Please use BatchAccountIdentity(ResourceIdentityType type, IDictionary<string, UserAssignedIdentities> userAssignedIdentities) instead.

[System.Obsolete("Please use BatchAccountIdentity(ResourceIdentityType type, IDictionary<string, UserAssignedIdentities> userAssignedIdentities) instead.")]
public BatchAccountIdentity (Microsoft.Azure.Management.Batch.Models.ResourceIdentityType type, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Batch.Models.BatchAccountIdentityUserAssignedIdentitiesValue> userAssignedIdentities);
[<System.Obsolete("Please use BatchAccountIdentity(ResourceIdentityType type, IDictionary<string, UserAssignedIdentities> userAssignedIdentities) instead.")>]
new Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity : Microsoft.Azure.Management.Batch.Models.ResourceIdentityType * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Batch.Models.BatchAccountIdentityUserAssignedIdentitiesValue> -> Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity
Public Sub New (type As ResourceIdentityType, userAssignedIdentities As IDictionary(Of String, BatchAccountIdentityUserAssignedIdentitiesValue))

Paramètres

Attributs

S’applique à

BatchAccountIdentity(ResourceIdentityType, IDictionary<String,UserAssignedIdentities>)

public BatchAccountIdentity (Microsoft.Azure.Management.Batch.Models.ResourceIdentityType type, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities> userAssignedIdentities);
new Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity : Microsoft.Azure.Management.Batch.Models.ResourceIdentityType * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities> -> Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity
Public Sub New (type As ResourceIdentityType, userAssignedIdentities As IDictionary(Of String, UserAssignedIdentities))

Paramètres

userAssignedIdentities
IDictionary<String,UserAssignedIdentities>

S’applique à

BatchAccountIdentity(ResourceIdentityType, String, String, IDictionary<String,UserAssignedIdentities>)

Initialise une nouvelle instance de la classe BatchAccountIdentity.

public BatchAccountIdentity (Microsoft.Azure.Management.Batch.Models.ResourceIdentityType type, string principalId = default, string tenantId = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities> userAssignedIdentities = default);
new Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity : Microsoft.Azure.Management.Batch.Models.ResourceIdentityType * string * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Batch.Models.UserAssignedIdentities> -> Microsoft.Azure.Management.Batch.Models.BatchAccountIdentity
Public Sub New (type As ResourceIdentityType, Optional principalId As String = Nothing, Optional tenantId As String = Nothing, Optional userAssignedIdentities As IDictionary(Of String, UserAssignedIdentities) = Nothing)

Paramètres

type
ResourceIdentityType

Type d’identité utilisé pour le compte Batch. Les valeurs possibles sont les suivantes : 'SystemAssigned', 'UserAssigned', 'None'

principalId
String

ID principal du compte Batch. Cette propriété est fournie uniquement pour une identité affectée par le système.

tenantId
String

ID de locataire associé au compte Batch. Cette propriété est fournie uniquement pour une identité affectée par le système.

userAssignedIdentities
IDictionary<String,UserAssignedIdentities>

Liste des identités d’utilisateur associées au compte Batch.

S’applique à