Skip to main content

workflow_run_actions

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

Overview

Nameworkflow_run_actions
TypeResource
Idazure.app_service.workflow_run_actions

Fields

NameDatatypeDescription
idtextThe resource id.
nametextGets the workflow run action name.
actionNametextfield from the properties object
codetextfield from the properties object
correlationtextfield from the properties object
end_timetextfield from the properties object
errortextfield from the properties object
inputs_linktextfield from the properties object
outputs_linktextfield from the properties object
resourceGroupNametextfield from the properties object
retry_historytextfield from the properties object
runNametextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
tracked_propertiestextfield from the properties object
tracking_idtextfield from the properties object
typetextGets the workflow run action type.
workflowNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTactionName, name, resourceGroupName, runName, subscriptionId, workflowNameGets a workflow run action.
listSELECTname, resourceGroupName, runName, subscriptionId, workflowNameGets a list of workflow run actions.

SELECT examples

Gets a list of 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 }}';