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

The following fields are returned by SELECT queries:

Successfully retrieved the list of followed databases.

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.
tableLevelSharingPropertiesobjectTable level sharing specifications

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, clusterName, subscriptionIdReturns 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.

NameDatatypeDescription
clusterNamestringThe name of the Kusto cluster.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;