Skip to main content

workflow_run_actions

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

Overview

Nameworkflow_run_actions
TypeResource
Idazure.logic_apps.workflow_run_actions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the workflow run action name.
propertiesobjectThe workflow run action properties.
typestringGets the workflow run action type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workflowName, runName, actionNameapi-versionGets a workflow run action.
listselectsubscriptionId, resourceGroupName, workflowName, runNameapi-version, $top, $filterGets a list of workflow run actions.

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
actionNamestringThe workflow action name.
resourceGroupNamestringThe resource group name.
runNamestringThe workflow run name.
subscriptionIdstringThe subscription id.
workflowNamestringThe workflow name.
$filterstringThe filter to apply on the operation. Options for filters include: Status.
$topinteger (int32)The number of items to be included in the result.
api-versionstringThe API version.

SELECT examples

Gets a workflow run action.

SELECT
id,
name,
properties,
type
FROM azure.logic_apps.workflow_run_actions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND runName = '{{ runName }}' -- required
AND actionName = '{{ actionName }}' -- required
AND api-version = '{{ api-version }}'
;