vw_data_lake_connector_topic_maps
Creates, updates, deletes, gets or lists a vw_data_lake_connector_topic_maps
resource.
Overview
Name | vw_data_lake_connector_topic_maps |
Type | View |
Id | azure.iot_mq.vw_data_lake_connector_topic_maps |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
JSON_EXTRACT(properties, '$.dataLakeConnectorRef') as "data_lake_connector_ref",
JSON_EXTRACT(properties, '$.mapping') as "mapping",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
mqName,
dataLakeConnectorName,
topicMapName
FROM azure.iot_mq.data_lake_connector_topic_maps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND mqName = 'replace-me' AND dataLakeConnectorName = 'replace-me';
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
json_extract_path_text(properties, '$.dataLakeConnectorRef') as "data_lake_connector_ref",
json_extract_path_text(properties, '$.mapping') as "mapping",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
mqName,
dataLakeConnectorName,
topicMapName
FROM azure.iot_mq.data_lake_connector_topic_maps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND mqName = 'replace-me' AND dataLakeConnectorName = 'replace-me';