workflow_trigger_histories
Creates, updates, deletes, gets or lists a workflow_trigger_histories
resource.
Overview
Name | workflow_trigger_histories |
Type | Resource |
Id | azure.logic_apps.workflow_trigger_histories |
Fields
- vw_workflow_trigger_histories
- workflow_trigger_histories
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the workflow trigger history name. |
code | text | field from the properties object |
correlation | text | field from the properties object |
end_time | text | field from the properties object |
error | text | field from the properties object |
fired | text | field from the properties object |
historyName | text | field from the properties object |
inputs_link | text | field from the properties object |
outputs_link | text | field from the properties object |
resourceGroupName | text | field from the properties object |
run | text | field from the properties object |
scheduled_time | 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 |
tracking_id | text | field from the properties object |
triggerName | text | field from the properties object |
type | text | Gets the workflow trigger history type. |
workflowName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the workflow trigger history name. |
properties | object | The workflow trigger history properties. |
type | string | Gets the workflow trigger history type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | historyName, resourceGroupName, subscriptionId, triggerName, workflowName | Gets a workflow trigger history. |
list | SELECT | resourceGroupName, subscriptionId, triggerName, workflowName | Gets a list of workflow trigger histories. |
resubmit | EXEC | historyName, resourceGroupName, subscriptionId, triggerName, workflowName | Resubmits a workflow run based on the trigger history. |
SELECT
examples
Gets a list of workflow trigger histories.
- vw_workflow_trigger_histories
- 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 }}';
SELECT
id,
name,
properties,
type
FROM azure.logic_apps.workflow_trigger_histories
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND triggerName = '{{ triggerName }}'
AND workflowName = '{{ workflowName }}';