workflow_run_actions
Creates, updates, deletes, gets or lists a workflow_run_actions
resource.
Overview
Name | workflow_run_actions |
Type | Resource |
Id | azure.app_service.workflow_run_actions |
Fields
- vw_workflow_run_actions
- workflow_run_actions
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the workflow run action name. |
actionName | text | field from the properties object |
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 |
inputs_link | text | field from the properties object |
outputs_link | text | field from the properties object |
resourceGroupName | text | field from the properties object |
retry_history | text | field from the properties object |
runName | 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 |
tracked_properties | text | field from the properties object |
tracking_id | text | field from the properties object |
type | text | Gets the workflow run action type. |
workflowName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the workflow run action name. |
properties | object | The workflow run action properties. |
type | string | Gets the workflow run action type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | actionName, name, resourceGroupName, runName, subscriptionId, workflowName | Gets a workflow run action. |
list | SELECT | name, resourceGroupName, runName, subscriptionId, workflowName | Gets a list of workflow run actions. |
SELECT
examples
Gets a list of workflow run actions.
- vw_workflow_run_actions
- workflow_run_actions
SELECT
id,
name,
actionName,
code,
correlation,
end_time,
error,
inputs_link,
outputs_link,
resourceGroupName,
retry_history,
runName,
start_time,
status,
subscriptionId,
tracked_properties,
tracking_id,
type,
workflowName
FROM azure.app_service.vw_workflow_run_actions
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND runName = '{{ runName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';
SELECT
id,
name,
properties,
type
FROM azure.app_service.workflow_run_actions
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND runName = '{{ runName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';