IdentityData 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
IdentityData() |
Initializes a new instance of the IdentityData class. |
IdentityData(String, String, String, IDictionary<String,UserIdentity>) |
Initializes a new instance of the IdentityData class. |
IdentityData()
Initializes a new instance of the IdentityData class.
public IdentityData ();
Public Sub New ()
Applies to
IdentityData(String, String, String, IDictionary<String,UserIdentity>)
Initializes a new instance of the IdentityData class.
public IdentityData (string type, string principalId = default, string tenantId = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity> userAssignedIdentities = default);
new Microsoft.Azure.Management.RecoveryServices.Models.IdentityData : string * string * string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.RecoveryServices.Models.UserIdentity> -> Microsoft.Azure.Management.RecoveryServices.Models.IdentityData
Public Sub New (type As String, Optional principalId As String = Nothing, Optional tenantId As String = Nothing, Optional userAssignedIdentities As IDictionary(Of String, UserIdentity) = 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 any identities. Possible values include: 'SystemAssigned', 'None', 'UserAssigned', 'SystemAssigned, UserAssigned'
- principalId
- String
The principal ID of resource identity.
- tenantId
- String
The tenant ID of resource.
- userAssignedIdentities
- IDictionary<String,UserIdentity>
The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
Applies to
Azure SDK for .NET