clusters_follower_databases
Creates, updates, deletes, gets or lists a clusters_follower_databases
resource.
Overview
Name | clusters_follower_databases |
Type | Resource |
Id | azure.data_explorer.clusters_follower_databases |
Fields
The following fields are returned by SELECT
queries:
- list
Successfully retrieved the list of followed databases.
Name | Datatype | Description |
---|---|---|
attachedDatabaseConfigurationName | string | Resource name of the attached database configuration in the follower cluster. |
clusterResourceId | string | Resource id of the cluster that follows a database owned by this cluster. |
databaseName | string | The database name owned by this cluster that was followed. * in case following all databases. |
databaseShareOrigin | string | The origin of the following setup. |
tableLevelSharingProperties | object | Table level sharing specifications |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , clusterName , subscriptionId | Returns a list of databases that are owned by this cluster and were followed by another cluster. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
clusterName | string | The name of the Kusto cluster. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list
Returns a list of databases that are owned by this cluster and were followed by another cluster.
SELECT
attachedDatabaseConfigurationName,
clusterResourceId,
databaseName,
databaseShareOrigin,
tableLevelSharingProperties
FROM azure.data_explorer.clusters_follower_databases
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;