vw_workflows
Creates, updates, deletes, gets or lists a vw_workflows
resource.
Overview
Name | vw_workflows |
Type | View |
Id | azure.logic_apps.vw_workflows |
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,
identity as identity,
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, '$.integrationServiceEnvironment') as "integration_service_environment",
JSON_EXTRACT(properties, '$.definition') as "definition",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
subscriptionId,
resourceGroupName,
workflowName
FROM azure.logic_apps.workflows
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
identity as identity,
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, '$.integrationServiceEnvironment') as "integration_service_environment",
json_extract_path_text(properties, '$.definition') as "definition",
json_extract_path_text(properties, '$.parameters') as "parameters",
subscriptionId,
resourceGroupName,
workflowName
FROM azure.logic_apps.workflows
WHERE subscriptionId = 'replace-me';