vw_workflow_versions
Creates, updates, deletes, gets or lists a vw_workflow_versions
resource.
Overview
Name | vw_workflow_versions |
Type | View |
Id | azure.app_service.vw_workflow_versions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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,
name,
workflowName,
versionId
FROM azure.app_service.workflow_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me' AND workflowName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.createdTime') as "created_time",
json_extract_path_text(properties, '$.changedTime') as "changed_time",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.accessEndpoint') as "access_endpoint",
json_extract_path_text(properties, '$.endpointsConfiguration') as "endpoints_configuration",
json_extract_path_text(properties, '$.accessControl') as "access_control",
json_extract_path_text(properties, '$.sku') as "sku",
json_extract_path_text(properties, '$.integrationAccount') as "integration_account",
json_extract_path_text(properties, '$.definition') as "definition",
json_extract_path_text(properties, '$.parameters') as "parameters",
subscriptionId,
resourceGroupName,
name,
workflowName,
versionId
FROM azure.app_service.workflow_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me' AND workflowName = 'replace-me';