ManagedServiceIdentity Constructors

Definition

Overloads

ManagedServiceIdentity()

Initializes a new instance of the ManagedServiceIdentity class.

ManagedServiceIdentity(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, IDictionary<String,UserAssignedIdentity>)

Initializes a new instance of the ManagedServiceIdentity class.

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

Parameters

type
String

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

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