Skip to main content

vw_flows

Creates, updates, deletes, gets or lists a vw_flows resource.

Overview

Namevw_flows
TypeView
Idazure.data_transfer.vw_flows

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
location as location,
plan as plan,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.connection') as "connection",
JSON_EXTRACT(properties, '$.flowId') as "flow_id",
JSON_EXTRACT(properties, '$.keyVaultUri') as "key_vault_uri",
JSON_EXTRACT(properties, '$.linkStatus') as "link_status",
JSON_EXTRACT(properties, '$.linkedFlowId') as "linked_flow_id",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.storageAccountName') as "storage_account_name",
JSON_EXTRACT(properties, '$.storageAccountId') as "storage_account_id",
JSON_EXTRACT(properties, '$.storageContainerName') as "storage_container_name",
JSON_EXTRACT(properties, '$.serviceBusQueueId') as "service_bus_queue_id",
JSON_EXTRACT(properties, '$.flowType') as "flow_type",
JSON_EXTRACT(properties, '$.dataType') as "data_type",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.policies') as "policies",
JSON_EXTRACT(properties, '$.schema') as "schema",
JSON_EXTRACT(properties, '$.messagingOptions') as "messaging_options",
subscriptionId,
resourceGroupName,
connectionName,
flowName
FROM azure.data_transfer.flows
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND connectionName = 'replace-me';