Identity Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Identity() |
Initializes a new instance of the Identity class. |
Identity(String, String, String, IDictionary<String,IdentityUserAssignedIdentitiesValue>) |
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,IdentityUserAssignedIdentitiesValue>)
Initializes a new instance of the Identity class.
public Identity (string type, string principalId = default, string tenantId = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Kusto.Models.IdentityUserAssignedIdentitiesValue> userAssignedIdentities = default);
new Microsoft.Azure.Management.Kusto.Models.Identity : string * string * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Kusto.Models.IdentityUserAssignedIdentitiesValue> -> Microsoft.Azure.Management.Kusto.Models.Identity
Public Sub New (type As String, Optional principalId As String = Nothing, Optional tenantId As String = Nothing, Optional userAssignedIdentities As IDictionary(Of String, IdentityUserAssignedIdentitiesValue) = Nothing)
Parameters
- type
- String
The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove all identities. Possible values include: 'None', 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned'
- principalId
- String
The principal ID of resource identity.
- tenantId
- String
The tenant ID of resource.
- userAssignedIdentities
- IDictionary<String,IdentityUserAssignedIdentitiesValue>
The list of user identities associated with the Kusto cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.