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
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 | Tables that will be included and excluded in the follower database |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | clusterName, resourceGroupName, subscriptionId | Returns a list of databases that are owned by this cluster and were followed by another cluster. |
SELECT
examples
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 clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';