ManagedInstanceExternalAdministrator Constructors

Definition

Overloads

ManagedInstanceExternalAdministrator()

Initializes a new instance of the ManagedInstanceExternalAdministrator class.

ManagedInstanceExternalAdministrator(String, String, String, Nullable<Guid>, Nullable<Guid>, Nullable<Boolean>)

Initializes a new instance of the ManagedInstanceExternalAdministrator class.

ManagedInstanceExternalAdministrator()

Initializes a new instance of the ManagedInstanceExternalAdministrator class.

public ManagedInstanceExternalAdministrator ();
Public Sub New ()

Applies to

ManagedInstanceExternalAdministrator(String, String, String, Nullable<Guid>, Nullable<Guid>, Nullable<Boolean>)

Initializes a new instance of the ManagedInstanceExternalAdministrator class.

public ManagedInstanceExternalAdministrator (string administratorType = default, string principalType = default, string login = default, Guid? sid = default, Guid? tenantId = default, bool? azureADOnlyAuthentication = default);
new Microsoft.Azure.Management.Sql.Models.ManagedInstanceExternalAdministrator : string * string * string * Nullable<Guid> * Nullable<Guid> * Nullable<bool> -> Microsoft.Azure.Management.Sql.Models.ManagedInstanceExternalAdministrator
Public Sub New (Optional administratorType As String = Nothing, Optional principalType As String = Nothing, Optional login As String = Nothing, Optional sid As Nullable(Of Guid) = Nothing, Optional tenantId As Nullable(Of Guid) = Nothing, Optional azureADOnlyAuthentication As Nullable(Of Boolean) = Nothing)

Parameters

administratorType
String

Type of the sever administrator. Possible values include: 'ActiveDirectory'

principalType
String

Principal Type of the sever administrator. Possible values include: 'User', 'Group', 'Application'

login
String

Login name of the server administrator.

sid
Nullable<Guid>

SID (object ID) of the server administrator.

tenantId
Nullable<Guid>

Tenant ID of the administrator.

azureADOnlyAuthentication
Nullable<Boolean>

Azure Active Directory only Authentication enabled.

Applies to