Skip to main content

workflow_run_actions

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

Overview

Nameworkflow_run_actions
TypeResource
Idazure.web.workflow_run_actions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
codestringGets the code.
correlationobjectThe correlation properties.
endTimestring (date-time)Gets the end time.
errorobjectGets the error.
inputsLinkobjectGets the link to inputs.
outputsLinkobjectGets the link to outputs.
retryHistoryarrayGets the retry histories.
startTimestring (date-time)Gets the start time.
statusstringGets the status. Known values are: "NotSpecified", "Paused", "Running", "Waiting", "Succeeded", "Skipped", "Suspended", "Cancelled", "Failed", "Faulted", "TimedOut", "Aborted", and "Ignored". (NotSpecified, Paused, Running, Waiting, Succeeded, Skipped, Suspended, Cancelled, Failed, Faulted, TimedOut, Aborted, Ignored)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
trackedPropertiesobjectGets the tracked properties.
trackingIdstringGets the tracking id.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, name, workflow_name, run_name, action_name, subscription_idGets a workflow run action.
listselectresource_group_name, name, workflow_name, run_name, subscription_id$top, $filterGets a list of workflow run actions.
list_expression_tracesexecresource_group_name, name, workflow_name, run_name, action_name, subscription_idLists a workflow run expression trace.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
action_namestringThe workflow action name. Required.
namestringSite name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
run_namestringThe workflow run name. Required.
subscription_idstring
workflow_namestringThe workflow name. Required.
$filterstringThe filter to apply on the operation. Options for filters include: Status. Default value is None.
$topintegerThe number of items to be included in the result. Default value is None.

SELECT examples

Gets a workflow run action.

SELECT
id,
name,
code,
correlation,
endTime,
error,
inputsLink,
outputsLink,
retryHistory,
startTime,
status,
systemData,
trackedProperties,
trackingId,
type
FROM azure.web.workflow_run_actions
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND name = '{{ name }}' -- required
AND workflow_name = '{{ workflow_name }}' -- required
AND run_name = '{{ run_name }}' -- required
AND action_name = '{{ action_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

Lifecycle Methods

Lists a workflow run expression trace.

EXEC azure.web.workflow_run_actions.list_expression_traces 
@resource_group_name='{{ resource_group_name }}' --required,
@name='{{ name }}' --required,
@workflow_name='{{ workflow_name }}' --required,
@run_name='{{ run_name }}' --required,
@action_name='{{ action_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;