ManagedIdentity Constructors

Definition

Overloads

Name Description
ManagedIdentity()

Initializes a new instance of the ManagedIdentity class.

ManagedIdentity(String, IDictionary<String,UserAssignedIdentityProperty>, String, String)

Initializes a new instance of the ManagedIdentity class.

ManagedIdentity()

Initializes a new instance of the ManagedIdentity class.

public ManagedIdentity();
Public Sub New ()

Applies to

ManagedIdentity(String, IDictionary<String,UserAssignedIdentityProperty>, String, String)

Initializes a new instance of the ManagedIdentity class.

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

Parameters

type
String

Represents the identity type: systemAssigned, userAssigned, None Possible values include: 'None', 'SystemAssigned', 'UserAssigned'

userAssignedIdentities
IDictionary<String,UserAssignedIdentityProperty>

Get or set the user assigned identities

principalId
String

Get the principal id for the system assigned identity. Only be used in response.

tenantId
String

Get the tenant id for the system assigned identity. Only be used in response

Applies to