Skip to main content

workflow_runs

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

Overview

Nameworkflow_runs
TypeResource
Idazure.logic_apps.workflow_runs

Fields

NameDatatypeDescription
idtextThe resource id.
nametextGets the workflow run name.
codetextfield from the properties object
correlationtextfield from the properties object
correlation_idtextfield from the properties object
end_timetextfield from the properties object
errortextfield from the properties object
outputstextfield from the properties object
resourceGroupNametextfield from the properties object
responsetextfield from the properties object
runNametextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
triggertextfield from the properties object
typetextGets the workflow run type.
wait_end_timetextfield from the properties object
workflowtextfield from the properties object
workflowNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, runName, subscriptionId, workflowNameGets a workflow run.
listSELECTresourceGroupName, subscriptionId, workflowNameGets a list of workflow runs.
cancelEXECresourceGroupName, runName, subscriptionId, workflowNameCancels a workflow run.

SELECT examples

Gets a list of 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 }}';