ResourceIdentity 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
ResourceIdentity() |
Initializes a new instance of the ResourceIdentity class. |
ResourceIdentity(IDictionary<String,UserIdentity>, Nullable<Guid>, String, Nullable<Guid>) |
Initializes a new instance of the ResourceIdentity class. |
ResourceIdentity()
Initializes a new instance of the ResourceIdentity class.
public ResourceIdentity ();
Public Sub New ()
Applies to
ResourceIdentity(IDictionary<String,UserIdentity>, Nullable<Guid>, String, Nullable<Guid>)
Initializes a new instance of the ResourceIdentity class.
public ResourceIdentity (System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Sql.Models.UserIdentity> userAssignedIdentities = default, Guid? principalId = default, string type = default, Guid? tenantId = default);
new Microsoft.Azure.Management.Sql.Models.ResourceIdentity : System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Sql.Models.UserIdentity> * Nullable<Guid> * string * Nullable<Guid> -> Microsoft.Azure.Management.Sql.Models.ResourceIdentity
Public Sub New (Optional userAssignedIdentities As IDictionary(Of String, UserIdentity) = Nothing, Optional principalId As Nullable(Of Guid) = Nothing, Optional type As String = Nothing, Optional tenantId As Nullable(Of Guid) = Nothing)
Parameters
- userAssignedIdentities
- IDictionary<String,UserIdentity>
The resource ids of the user assigned identities to use
- type
- String
The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. Possible values include: 'None', 'SystemAssigned', 'UserAssigned', 'SystemAssigned,UserAssigned'
Applies to
Azure SDK for .NET