Databases - List Principals
Returns a list of database principals of the given Kusto cluster and database.
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/listPrincipals?api-version=2021-01-01
Name | In | Required | Type | Description |
---|---|---|---|---|
cluster
|
path | True |
string |
The name of the Kusto cluster. |
database
|
path | True |
string |
The name of the database in the Kusto cluster. |
resource
|
path | True |
string |
The name of the resource group containing the Kusto cluster. |
subscription
|
path | True |
string |
Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
api-version
|
query | True |
string |
Client API Version. |
Name | Type | Description |
---|---|---|
200 OK |
Successfully retrieved the list of database principals. |
|
Other Status Codes |
Error response describing why the operation failed. |
Sample request
POST https://management.azure.com/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/clusters/kustoclusterrptest4/databases/KustoDatabase8/listPrincipals?api-version=2021-01-01
Sample response
{
"value": [
{
"name": "Some User",
"role": "Admin",
"type": "User",
"fqn": "aaduser=some_guid",
"email": "user@microsoft.com",
"appId": ""
},
{
"name": "Kusto",
"role": "Viewer",
"type": "Group",
"fqn": "aadgroup=some_guid",
"email": "kusto@microsoft.com",
"appId": ""
},
{
"name": "SomeApp",
"role": "Admin",
"type": "App",
"fqn": "aadapp=some_guid_app_id",
"email": "",
"appId": "some_guid_app_id"
}
]
}
Name | Description |
---|---|
Cloud |
An error response from Kusto. |
Cloud |
An error response from Kusto. |
Database |
A class representing database principal entity. |
Database |
The list Kusto database principals operation response. |
Database |
Database principal role. |
Database |
Database principal type. |
An error response from Kusto.
Name | Type | Description |
---|---|---|
error |
An error response from Kusto. |
An error response from Kusto.
Name | Type | Description |
---|---|---|
code |
string |
An identifier for the error. Codes are invariant and are intended to be consumed programmatically. |
details |
A list of additional details about the error. |
|
message |
string |
A message describing the error, intended to be suitable for displaying in a user interface. |
target |
string |
The target of the particular error. For example, the name of the property in error. |
A class representing database principal entity.
Name | Type | Description |
---|---|---|
appId |
string |
Application id - relevant only for application principal type. |
string |
Database principal email if exists. |
|
fqn |
string |
Database principal fully qualified name. |
name |
string |
Database principal name. |
role |
Database principal role. |
|
tenantName |
string |
The tenant name of the principal |
type |
Database principal type. |
The list Kusto database principals operation response.
Name | Type | Description |
---|---|---|
value |
The list of Kusto database principals. |
Database principal role.
Value | Description |
---|---|
Admin | |
Ingestor | |
Monitor | |
UnrestrictedViewer | |
User | |
Viewer |
Database principal type.
Value | Description |
---|---|
App | |
Group | |
User |