Skip to main content

workflow_run_operations

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

Overview

Nameworkflow_run_operations
TypeResource
Idazure.logic_apps.workflow_run_operations

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
operationIdtextfield 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
getSELECToperationId, resourceGroupName, runName, subscriptionId, workflowNameGets an operation for a run.

SELECT examples

Gets an operation for a run.

SELECT
id,
name,
code,
correlation,
correlation_id,
end_time,
error,
operationId,
outputs,
resourceGroupName,
response,
runName,
start_time,
status,
subscriptionId,
trigger,
type,
wait_end_time,
workflow,
workflowName
FROM azure.logic_apps.vw_workflow_run_operations
WHERE operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND runName = '{{ runName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';