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
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. (x-ms-client-name: kustoPoolResourceId) |
databaseName | string | The database name owned by this cluster that was followed. * in case following all databases. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | workspaceName , kustoPoolName , subscriptionId , resourceGroupName | Returns a list of databases that are owned by this Kusto Pool and were followed by another Kusto Pool. |
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 |
---|---|---|
kustoPoolName | string | The name of the Kusto pool. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT
examples
- list
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 workspaceName = '{{ workspaceName }}' -- required
AND kustoPoolName = '{{ kustoPoolName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;