ManagedServiceIdentity Constructors

Definition

Overloads

ManagedServiceIdentity()

Initializes a new instance of the ManagedServiceIdentity class.

ManagedServiceIdentity(String, String, String, IDictionary<String,UserAssignedIdentity>)

Initializes a new instance of the ManagedServiceIdentity class.

ManagedServiceIdentity()

Initializes a new instance of the ManagedServiceIdentity class.

public ManagedServiceIdentity ();
Public Sub New ()

Applies to

ManagedServiceIdentity(String, String, String, IDictionary<String,UserAssignedIdentity>)

Initializes a new instance of the ManagedServiceIdentity class.

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

Parameters

type
String

Type of the managed identity. Possible values include: 'None', 'SystemAssigned', 'UserAssigned'

principalId
String

Azure Active Directory principal ID associated with this Identity.

tenantId
String

ID of the Azure Active Directory.

userAssignedIdentities
IDictionary<String,UserAssignedIdentity>

The list of user-assigned managed identities associated with the resource. Key is the Azure resource Id of the managed identity.

Applies to