Skip to main content

vw_workflow_versions

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

Overview

Namevw_workflow_versions
TypeView
Idazure.logic_apps.vw_workflow_versions

Fields

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

SQL Definition

SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.createdTime') as "created_time",
JSON_EXTRACT(properties, '$.changedTime') as "changed_time",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.accessEndpoint') as "access_endpoint",
JSON_EXTRACT(properties, '$.endpointsConfiguration') as "endpoints_configuration",
JSON_EXTRACT(properties, '$.accessControl') as "access_control",
JSON_EXTRACT(properties, '$.sku') as "sku",
JSON_EXTRACT(properties, '$.integrationAccount') as "integration_account",
JSON_EXTRACT(properties, '$.definition') as "definition",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
subscriptionId,
resourceGroupName,
workflowName,
versionId
FROM azure.logic_apps.workflow_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workflowName = 'replace-me';