Skip to main content

clusters_follower_databases

Creates, updates, deletes, gets or lists a clusters_follower_databases resource.

Overview

Nameclusters_follower_databases
TypeResource
Idazure.data_explorer.clusters_follower_databases

Fields

NameDatatypeDescription
attachedDatabaseConfigurationNamestringResource name of the attached database configuration in the follower cluster.
clusterResourceIdstringResource id of the cluster that follows a database owned by this cluster.
databaseNamestringThe database name owned by this cluster that was followed. * in case following all databases.
databaseShareOriginstringThe origin of the following setup.
tableLevelSharingPropertiesobjectTables that will be included and excluded in the follower database

Methods

NameAccessible byRequired ParamsDescription
listSELECTclusterName, resourceGroupName, subscriptionIdReturns 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 }}';