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

NameDatatypeDescription
idtextThe resource id.
nametextGets the resource name.
actionNametextfield from the properties object
inputstextfield from the properties object
inputs_linktextfield from the properties object
iteration_counttextfield from the properties object
locationtextThe resource location.
outputstextfield from the properties object
outputs_linktextfield from the properties object
repetitionNametextfield from the properties object
repetition_indexestextfield from the properties object
resourceGroupNametextfield from the properties object
retry_historytextfield from the properties object
runNametextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextThe resource tags.
tracked_propertiestextfield from the properties object
tracking_idtextfield from the properties object
typetextGets the resource type.
workflowNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTactionName, repetitionName, resourceGroupName, runName, subscriptionId, workflowNameGet a workflow run action repetition.
listSELECTactionName, resourceGroupName, runName, subscriptionId, workflowNameGet all of a workflow run action repetitions.

SELECT examples

Get all of a workflow run action repetitions.

SELECT
id,
name,
actionName,
inputs,
inputs_link,
iteration_count,
location,
outputs,
outputs_link,
repetitionName,
repetition_indexes,
resourceGroupName,
retry_history,
runName,
subscriptionId,
tags,
tracked_properties,
tracking_id,
type,
workflowName
FROM azure.logic_apps.vw_workflow_run_action_repetitions
WHERE actionName = '{{ actionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND runName = '{{ runName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';