vw_dataflow_endpoints
Creates, updates, deletes, gets or lists a vw_dataflow_endpoints
resource.
Overview
Name | vw_dataflow_endpoints |
Type | View |
Id | azure.iotoperations.vw_dataflow_endpoints |
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, '$.endpointType') as "endpoint_type",
JSON_EXTRACT(properties, '$.dataExplorerSettings') as "data_explorer_settings",
JSON_EXTRACT(properties, '$.dataLakeStorageSettings') as "data_lake_storage_settings",
JSON_EXTRACT(properties, '$.fabricOneLakeSettings') as "fabric_one_lake_settings",
JSON_EXTRACT(properties, '$.kafkaSettings') as "kafka_settings",
JSON_EXTRACT(properties, '$.localStorageSettings') as "local_storage_settings",
JSON_EXTRACT(properties, '$.mqttSettings') as "mqtt_settings",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
instanceName,
dataflowEndpointName
FROM azure.iotoperations.dataflow_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND instanceName = 'replace-me';
SELECT
extendedLocation as extended_location,
json_extract_path_text(properties, '$.endpointType') as "endpoint_type",
json_extract_path_text(properties, '$.dataExplorerSettings') as "data_explorer_settings",
json_extract_path_text(properties, '$.dataLakeStorageSettings') as "data_lake_storage_settings",
json_extract_path_text(properties, '$.fabricOneLakeSettings') as "fabric_one_lake_settings",
json_extract_path_text(properties, '$.kafkaSettings') as "kafka_settings",
json_extract_path_text(properties, '$.localStorageSettings') as "local_storage_settings",
json_extract_path_text(properties, '$.mqttSettings') as "mqtt_settings",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
instanceName,
dataflowEndpointName
FROM azure.iotoperations.dataflow_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND instanceName = 'replace-me';