vw_kusto_pool_attached_database_configurations
Creates, updates, deletes, gets or lists a vw_kusto_pool_attached_database_configurations
resource.
Overview
Name | vw_kusto_pool_attached_database_configurations |
Type | View |
Id | azure.synapse.vw_kusto_pool_attached_database_configurations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.databaseName') as "database_name",
JSON_EXTRACT(properties, '$.clusterResourceId') as "cluster_resource_id",
JSON_EXTRACT(properties, '$.attachedDatabaseNames') as "attached_database_names",
JSON_EXTRACT(properties, '$.defaultPrincipalsModificationKind') as "default_principals_modification_kind",
JSON_EXTRACT(properties, '$.tableLevelSharingProperties') as "table_level_sharing_properties",
subscriptionId,
resourceGroupName,
workspaceName,
kustoPoolName,
attachedDatabaseConfigurationName
FROM azure.synapse.kusto_pool_attached_database_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND kustoPoolName = 'replace-me';
SELECT
location as location,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.databaseName') as "database_name",
json_extract_path_text(properties, '$.clusterResourceId') as "cluster_resource_id",
json_extract_path_text(properties, '$.attachedDatabaseNames') as "attached_database_names",
json_extract_path_text(properties, '$.defaultPrincipalsModificationKind') as "default_principals_modification_kind",
json_extract_path_text(properties, '$.tableLevelSharingProperties') as "table_level_sharing_properties",
subscriptionId,
resourceGroupName,
workspaceName,
kustoPoolName,
attachedDatabaseConfigurationName
FROM azure.synapse.kusto_pool_attached_database_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND kustoPoolName = 'replace-me';