Skip to main content

workflow_trigger_histories

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

Overview

Nameworkflow_trigger_histories
TypeResource
Idazure.logic_apps.workflow_trigger_histories

Fields

NameDatatypeDescription
idtextThe resource id.
nametextGets the workflow trigger history name.
codetextfield from the properties object
correlationtextfield from the properties object
end_timetextfield from the properties object
errortextfield from the properties object
firedtextfield from the properties object
historyNametextfield from the properties object
inputs_linktextfield from the properties object
outputs_linktextfield from the properties object
resourceGroupNametextfield from the properties object
runtextfield from the properties object
scheduled_timetextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
tracking_idtextfield from the properties object
triggerNametextfield from the properties object
typetextGets the workflow trigger history type.
workflowNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECThistoryName, resourceGroupName, subscriptionId, triggerName, workflowNameGets a workflow trigger history.
listSELECTresourceGroupName, subscriptionId, triggerName, workflowNameGets a list of workflow trigger histories.
resubmitEXEChistoryName, resourceGroupName, subscriptionId, triggerName, workflowNameResubmits a workflow run based on the trigger history.

SELECT examples

Gets a list of workflow trigger histories.

SELECT
id,
name,
code,
correlation,
end_time,
error,
fired,
historyName,
inputs_link,
outputs_link,
resourceGroupName,
run,
scheduled_time,
start_time,
status,
subscriptionId,
tracking_id,
triggerName,
type,
workflowName
FROM azure.logic_apps.vw_workflow_trigger_histories
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND triggerName = '{{ triggerName }}'
AND workflowName = '{{ workflowName }}';