DatabaseIdentity 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
DatabaseIdentity() |
Initializes a new instance of the DatabaseIdentity class. |
DatabaseIdentity(String, Nullable<Guid>, IDictionary<String,DatabaseUserIdentity>) |
Initializes a new instance of the DatabaseIdentity class. |
DatabaseIdentity()
Initializes a new instance of the DatabaseIdentity class.
public DatabaseIdentity ();
Public Sub New ()
Applies to
DatabaseIdentity(String, Nullable<Guid>, IDictionary<String,DatabaseUserIdentity>)
Initializes a new instance of the DatabaseIdentity class.
public DatabaseIdentity (string type = default, Guid? tenantId = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Sql.Models.DatabaseUserIdentity> userAssignedIdentities = default);
new Microsoft.Azure.Management.Sql.Models.DatabaseIdentity : string * Nullable<Guid> * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Sql.Models.DatabaseUserIdentity> -> Microsoft.Azure.Management.Sql.Models.DatabaseIdentity
Public Sub New (Optional type As String = Nothing, Optional tenantId As Nullable(Of Guid) = Nothing, Optional userAssignedIdentities As IDictionary(Of String, DatabaseUserIdentity) = Nothing)
Parameters
- type
- String
The identity type. Possible values include: 'None', 'UserAssigned'
- userAssignedIdentities
- IDictionary<String,DatabaseUserIdentity>
The resource ids of the user assigned identities to use
Applies to
Azure SDK for .NET