workflow_triggers
Creates, updates, deletes, gets or lists a workflow_triggers
resource.
Overview
Name | workflow_triggers |
Type | Resource |
Id | azure.app_service.workflow_triggers |
Fields
- vw_workflow_triggers
- workflow_triggers
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the workflow trigger name. |
changed_time | text | field from the properties object |
created_time | text | field from the properties object |
last_execution_time | text | field from the properties object |
next_execution_time | text | field from the properties object |
provisioning_state | text | field from the properties object |
recurrence | text | field from the properties object |
resourceGroupName | text | field from the properties object |
state | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
triggerName | text | field from the properties object |
type | text | Gets the workflow trigger type. |
workflow | text | field from the properties object |
workflowName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the workflow trigger name. |
properties | object | The workflow trigger properties. |
type | string | Gets the workflow trigger type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | name, resourceGroupName, subscriptionId, triggerName, workflowName | Gets a workflow trigger. |
list | SELECT | name, resourceGroupName, subscriptionId, workflowName | Gets a list of workflow triggers. |
run | EXEC | name, resourceGroupName, subscriptionId, triggerName, workflowName | Runs a workflow trigger. |
SELECT
examples
Gets a list of workflow triggers.
- vw_workflow_triggers
- 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 }}';
SELECT
id,
name,
properties,
type
FROM azure.app_service.workflow_triggers
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';