BatchAccountIdentity Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BatchAccountIdentity() |
Initializes a new instance of the BatchAccountIdentity class. |
BatchAccountIdentity(ResourceIdentityType, IDictionary<String,BatchAccountIdentityUserAssignedIdentitiesValue>) |
Obsolete.
|
BatchAccountIdentity(ResourceIdentityType, IDictionary<String,UserAssignedIdentities>) | |
BatchAccountIdentity(ResourceIdentityType, String, String, IDictionary<String,UserAssignedIdentities>) |
Initializes a new instance of the BatchAccountIdentity class. |
BatchAccountIdentity()
Initializes a new instance of the BatchAccountIdentity class.
public BatchAccountIdentity();
Public Sub New ()
Applies to
BatchAccountIdentity(ResourceIdentityType, IDictionary<String,BatchAccountIdentityUserAssignedIdentitiesValue>)
Caution
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))
Parameters
- type
- ResourceIdentityType
- userAssignedIdentities
- IDictionary<String,BatchAccountIdentityUserAssignedIdentitiesValue>
- Attributes
Applies to
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))
Parameters
- type
- ResourceIdentityType
- userAssignedIdentities
- IDictionary<String,UserAssignedIdentities>
Applies to
BatchAccountIdentity(ResourceIdentityType, String, String, IDictionary<String,UserAssignedIdentities>)
Initializes a new instance of the BatchAccountIdentity class.
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)
Parameters
- type
- ResourceIdentityType
The type of identity used for the Batch account. Possible values include: 'SystemAssigned', 'UserAssigned', 'None'
- principalId
- String
The principal id of the Batch account. This property will only be provided for a system assigned identity.
- tenantId
- String
The tenant id associated with the Batch account. This property will only be provided for a system assigned identity.
- userAssignedIdentities
- IDictionary<String,UserAssignedIdentities>
The list of user identities associated with the Batch account.
Applies to
Azure SDK for .NET