vw_mqtt_bridge_topic_maps
Creates, updates, deletes, gets or lists a vw_mqtt_bridge_topic_maps
resource.
Overview
Name | vw_mqtt_bridge_topic_maps |
Type | View |
Id | azure.iot_mq.vw_mqtt_bridge_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, '$.mqttBridgeConnectorRef') as "mqtt_bridge_connector_ref",
JSON_EXTRACT(properties, '$.routes') as "routes",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
mqName,
mqttBridgeConnectorName,
topicMapName
FROM azure.iot_mq.mqtt_bridge_topic_maps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND mqName = 'replace-me' AND mqttBridgeConnectorName = 'replace-me';
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
json_extract_path_text(properties, '$.mqttBridgeConnectorRef') as "mqtt_bridge_connector_ref",
json_extract_path_text(properties, '$.routes') as "routes",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
mqName,
mqttBridgeConnectorName,
topicMapName
FROM azure.iot_mq.mqtt_bridge_topic_maps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND mqName = 'replace-me' AND mqttBridgeConnectorName = 'replace-me';