vw_workflow_triggers
Creates, updates, deletes, gets or lists a vw_workflow_triggers
resource.
Overview
Name | vw_workflow_triggers |
Type | View |
Id | azure.app_service.vw_workflow_triggers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
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, '$.status') as "status",
JSON_EXTRACT(properties, '$.lastExecutionTime') as "last_execution_time",
JSON_EXTRACT(properties, '$.nextExecutionTime') as "next_execution_time",
JSON_EXTRACT(properties, '$.recurrence') as "recurrence",
JSON_EXTRACT(properties, '$.workflow') as "workflow",
subscriptionId,
resourceGroupName,
name,
workflowName,
triggerName
FROM azure.app_service.workflow_triggers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me' AND workflowName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
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, '$.status') as "status",
json_extract_path_text(properties, '$.lastExecutionTime') as "last_execution_time",
json_extract_path_text(properties, '$.nextExecutionTime') as "next_execution_time",
json_extract_path_text(properties, '$.recurrence') as "recurrence",
json_extract_path_text(properties, '$.workflow') as "workflow",
subscriptionId,
resourceGroupName,
name,
workflowName,
triggerName
FROM azure.app_service.workflow_triggers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me' AND workflowName = 'replace-me';