Skip to main content

workflow_triggers

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

Overview

Nameworkflow_triggers
TypeResource
Idazure.app_service.workflow_triggers

Fields

NameDatatypeDescription
idtextThe resource id.
nametextGets the workflow trigger name.
changed_timetextfield from the properties object
created_timetextfield from the properties object
last_execution_timetextfield from the properties object
next_execution_timetextfield from the properties object
provisioning_statetextfield from the properties object
recurrencetextfield from the properties object
resourceGroupNametextfield from the properties object
statetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
triggerNametextfield from the properties object
typetextGets the workflow trigger type.
workflowtextfield from the properties object
workflowNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTname, resourceGroupName, subscriptionId, triggerName, workflowNameGets a workflow trigger.
listSELECTname, resourceGroupName, subscriptionId, workflowNameGets a list of workflow triggers.
runEXECname, resourceGroupName, subscriptionId, triggerName, workflowNameRuns a workflow trigger.

SELECT examples

Gets a list of workflow triggers.

SELECT
id,
name,
changed_time,
created_time,
last_execution_time,
next_execution_time,
provisioning_state,
recurrence,
resourceGroupName,
state,
status,
subscriptionId,
triggerName,
type,
workflow,
workflowName
FROM azure.app_service.vw_workflow_triggers
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';