vw_dataflows
Creates, updates, deletes, gets or lists a vw_dataflows
resource.
Overview
Name | vw_dataflows |
Type | View |
Id | azure.iotoperations.vw_dataflows |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
extendedLocation as extended_location,
JSON_EXTRACT(properties, '$.mode') as "mode",
JSON_EXTRACT(properties, '$.operations') as "operations",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
instanceName,
dataflowProfileName,
dataflowName
FROM azure.iotoperations.dataflows
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND instanceName = 'replace-me' AND dataflowProfileName = 'replace-me';
SELECT
extendedLocation as extended_location,
json_extract_path_text(properties, '$.mode') as "mode",
json_extract_path_text(properties, '$.operations') as "operations",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
instanceName,
dataflowProfileName,
dataflowName
FROM azure.iotoperations.dataflows
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND instanceName = 'replace-me' AND dataflowProfileName = 'replace-me';