kusto_pools_follower_databases
Creates, updates, deletes, gets or lists a kusto_pools_follower_databases
resource.
Overview
Name | kusto_pools_follower_databases |
Type | Resource |
Id | azure.synapse.kusto_pools_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. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | kustoPoolName, resourceGroupName, subscriptionId, workspaceName | Returns a list of databases that are owned by this Kusto Pool and were followed by another Kusto Pool. |
SELECT
examples
Returns a list of databases that are owned by this Kusto Pool and were followed by another Kusto Pool.
SELECT
attachedDatabaseConfigurationName,
clusterResourceId,
databaseName
FROM azure.synapse.kusto_pools_follower_databases
WHERE kustoPoolName = '{{ kustoPoolName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';