workflow_runs
Creates, updates, deletes, gets or lists a workflow_runs
resource.
Overview
Name | workflow_runs |
Type | Resource |
Id | azure.logic_apps.workflow_runs |
Fields
- vw_workflow_runs
- workflow_runs
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the workflow run name. |
code | text | field from the properties object |
correlation | text | field from the properties object |
correlation_id | text | field from the properties object |
end_time | text | field from the properties object |
error | text | field from the properties object |
outputs | text | field from the properties object |
resourceGroupName | text | field from the properties object |
response | text | field from the properties object |
runName | text | field from the properties object |
start_time | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
trigger | text | field from the properties object |
type | text | Gets the workflow run type. |
wait_end_time | text | field from the properties object |
workflow | text | field from the properties object |
workflowName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the workflow run name. |
properties | object | The workflow run properties. |
type | string | Gets the workflow run type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, runName, subscriptionId, workflowName | Gets a workflow run. |
list | SELECT | resourceGroupName, subscriptionId, workflowName | Gets a list of workflow runs. |
cancel | EXEC | resourceGroupName, runName, subscriptionId, workflowName | Cancels a workflow run. |
SELECT
examples
Gets a list of workflow runs.
- vw_workflow_runs
- workflow_runs
SELECT
id,
name,
code,
correlation,
correlation_id,
end_time,
error,
outputs,
resourceGroupName,
response,
runName,
start_time,
status,
subscriptionId,
trigger,
type,
wait_end_time,
workflow,
workflowName
FROM azure.logic_apps.vw_workflow_runs
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';
SELECT
id,
name,
properties,
type
FROM azure.logic_apps.workflow_runs
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';