Databases - List Principals
Retourneert een lijst met database-principals van het opgegeven Kusto-cluster en de opgegeven Kusto-database.
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName}/listPrincipals?api-version=2023-08-15
URI-parameters
Name | In | Vereist | Type | Description |
---|---|---|---|---|
cluster
|
path | True |
string |
De naam van het Kusto-cluster. Regex-patroon: |
database
|
path | True |
string |
De naam van de database in het Kusto-cluster. Regex-patroon: |
resource
|
path | True |
string |
De naam van de resourcegroep. De naam is niet hoofdlettergevoelig. |
subscription
|
path | True |
string |
De id van het doelabonnement. |
api-version
|
query | True |
string |
De API-versie die voor deze bewerking moet worden gebruikt. |
Antwoorden
Name | Type | Description |
---|---|---|
200 OK |
De lijst met database-principals is opgehaald. |
|
Other Status Codes |
Foutreactie waarin wordt beschreven waarom de bewerking is mislukt. |
Voorbeelden
KustoDatabaseListPrincipals
Voorbeeldaanvraag
Voorbeeldrespons
{
"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"
}
]
}
Definities
Name | Description |
---|---|
Database |
Een klasse die de database-principal-entiteit vertegenwoordigt. |
Database |
Het bewerkingsantwoord van Kusto-database-principals weergeven. |
Database |
Database-principal-rol. |
Database |
Type database-principal. |
Error |
Aanvullende informatie over de resourcebeheerfout. |
Error |
De foutdetails. |
Error |
Foutreactie |
DatabasePrincipal
Een klasse die de database-principal-entiteit vertegenwoordigt.
Name | Type | Description |
---|---|---|
appId |
string |
Toepassings-id: alleen relevant voor het type toepassingsprincipal. |
string |
Het e-mailadres van de database-principal, indien aanwezig. |
|
fqn |
string |
Volledig gekwalificeerde naam van database-principal. |
name |
string |
Principal-naam van database. |
role |
Database-principal-rol. |
|
tenantName |
string |
De tenantnaam van de principal |
type |
Type database-principal. |
DatabasePrincipalListResult
Het bewerkingsantwoord van Kusto-database-principals weergeven.
Name | Type | Description |
---|---|---|
value |
De lijst met Kusto-database-principals. |
DatabasePrincipalRole
Database-principal-rol.
Name | Type | Description |
---|---|---|
Admin |
string |
|
Ingestor |
string |
|
Monitor |
string |
|
UnrestrictedViewer |
string |
|
User |
string |
|
Viewer |
string |
DatabasePrincipalType
Type database-principal.
Name | Type | Description |
---|---|---|
App |
string |
|
Group |
string |
|
User |
string |
ErrorAdditionalInfo
Aanvullende informatie over de resourcebeheerfout.
Name | Type | Description |
---|---|---|
info |
object |
De aanvullende informatie. |
type |
string |
Het type aanvullende informatie. |
ErrorDetail
De foutdetails.
Name | Type | Description |
---|---|---|
additionalInfo |
Aanvullende informatie over de fout. |
|
code |
string |
De foutcode. |
details |
De foutdetails. |
|
message |
string |
Het foutbericht. |
target |
string |
Het foutdoel. |
ErrorResponse
Foutreactie
Name | Type | Description |
---|---|---|
error |
Het foutobject. |