BatchPoolIdentity Constructors

Definition

Overloads

BatchPoolIdentity()

Initializes a new instance of the BatchPoolIdentity class.

BatchPoolIdentity(PoolIdentityType, IDictionary<String,UserAssignedIdentities>)

Initializes a new instance of the BatchPoolIdentity class.

BatchPoolIdentity()

Initializes a new instance of the BatchPoolIdentity class.

public BatchPoolIdentity ();
Public Sub New ()

Applies to

BatchPoolIdentity(PoolIdentityType, IDictionary<String,UserAssignedIdentities>)

Initializes a new instance of the BatchPoolIdentity class.

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

Parameters

type
PoolIdentityType

The type of identity used for the Batch Pool. Possible values include: 'UserAssigned', 'None'

userAssignedIdentities
IDictionary<String,UserAssignedIdentities>

The list of user identities associated with the Batch pool.

Applies to