DatabasePrincipal Constructors

Definition

Overloads

DatabasePrincipal()

Initializes a new instance of the DatabasePrincipal class.

DatabasePrincipal(String, String, String, String, String, String, String)

Initializes a new instance of the DatabasePrincipal class.

DatabasePrincipal()

Initializes a new instance of the DatabasePrincipal class.

public DatabasePrincipal ();
Public Sub New ()

Applies to

DatabasePrincipal(String, String, String, String, String, String, String)

Initializes a new instance of the DatabasePrincipal class.

public DatabasePrincipal (string role, string name, string type, string fqn = default, string email = default, string appId = default, string tenantName = default);
new Microsoft.Azure.Management.Kusto.Models.DatabasePrincipal : string * string * string * string * string * string * string -> Microsoft.Azure.Management.Kusto.Models.DatabasePrincipal
Public Sub New (role As String, name As String, type As String, Optional fqn As String = Nothing, Optional email As String = Nothing, Optional appId As String = Nothing, Optional tenantName As String = Nothing)

Parameters

role
String

Database principal role. Possible values include: 'Admin', 'Ingestor', 'Monitor', 'User', 'UnrestrictedViewer', 'Viewer'

name
String

Database principal name.

type
String

Database principal type. Possible values include: 'App', 'Group', 'User'

fqn
String

Database principal fully qualified name.

email
String

Database principal email if exists.

appId
String

Application id - relevant only for application principal type.

tenantName
String

The tenant name of the principal

Applies to