Skip to main content

workflow_run_action_repetitions

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

Overview

Nameworkflow_run_action_repetitions
TypeResource
Idazure.logic_apps.workflow_run_action_repetitions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
locationstringThe resource location.
propertiesobjectThe workflow run action repetition properties definition.
tagsobjectThe resource tags.
typestringGets the resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workflowName, runName, actionName, repetitionNameapi-versionGet a workflow run action repetition.
listselectsubscriptionId, resourceGroupName, workflowName, runName, actionNameapi-versionGet all of a workflow run action repetitions.

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.
repetitionNamestringThe workflow repetition.
resourceGroupNamestringThe resource group name.
runNamestringThe workflow run name.
subscriptionIdstringThe subscription id.
workflowNamestringThe workflow name.
api-versionstringThe API version.

SELECT examples

Get a workflow run action repetition.

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