Share via


Identity Constructors

Definition

Overloads

Identity()

Initializes a new instance of the Identity class.

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

Initializes a new instance of the Identity class.

Identity()

Initializes a new instance of the Identity class.

public Identity ();
Public Sub New ()

Applies to

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

Initializes a new instance of the Identity class.

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

Parameters

principalId
String

ObjectId from the KeyVault

tenantId
String

TenantId from the KeyVault

type
String

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

userAssignedIdentities
IDictionary<String,UserAssignedIdentity>

Properties for User Assigned Identities

Applies to