Delen via


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
clusterName
path True

string

De naam van het Kusto-cluster.

Regex-patroon: ^.*$

databaseName
path True

string

De naam van de database in het Kusto-cluster.

Regex-patroon: ^.*$

resourceGroupName
path True

string

De naam van de resourcegroep. De naam is niet hoofdlettergevoelig.

subscriptionId
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

DatabasePrincipalListResult

De lijst met database-principals is opgehaald.

Other Status Codes

ErrorResponse

Foutreactie waarin wordt beschreven waarom de bewerking is mislukt.

Voorbeelden

KustoDatabaseListPrincipals

Voorbeeldaanvraag

POST https://management.azure.com/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/clusters/kustoCluster/databases/KustoDatabase8/listPrincipals?api-version=2023-08-15

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
DatabasePrincipal

Een klasse die de database-principal-entiteit vertegenwoordigt.

DatabasePrincipalListResult

Het bewerkingsantwoord van Kusto-database-principals weergeven.

DatabasePrincipalRole

Database-principal-rol.

DatabasePrincipalType

Type database-principal.

ErrorAdditionalInfo

Aanvullende informatie over de resourcebeheerfout.

ErrorDetail

De foutdetails.

ErrorResponse

Foutreactie

DatabasePrincipal

Een klasse die de database-principal-entiteit vertegenwoordigt.

Name Type Description
appId

string

Toepassings-id: alleen relevant voor het type toepassingsprincipal.

email

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

DatabasePrincipalRole

Database-principal-rol.

tenantName

string

De tenantnaam van de principal

type

DatabasePrincipalType

Type database-principal.

DatabasePrincipalListResult

Het bewerkingsantwoord van Kusto-database-principals weergeven.

Name Type Description
value

DatabasePrincipal[]

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

ErrorAdditionalInfo[]

Aanvullende informatie over de fout.

code

string

De foutcode.

details

ErrorDetail[]

De foutdetails.

message

string

Het foutbericht.

target

string

Het foutdoel.

ErrorResponse

Foutreactie

Name Type Description
error

ErrorDetail

Het foutobject.