다음을 통해 공유


DatabaseIdentity Constructors

Definition

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'

tenantId
Nullable<Guid>

The Azure Active Directory tenant id.

userAssignedIdentities
IDictionary<String,DatabaseUserIdentity>

The resource ids of the user assigned identities to use

Applies to