Skip to main content

workflow_run_action_scope_repetitions

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

Overview

Nameworkflow_run_action_scope_repetitions
TypeResource
Idazure.app_service.workflow_run_action_scope_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, name, repetitionName, resourceGroupName, runName, subscriptionId, workflowNameGet a workflow run action scoped repetition.
listSELECTactionName, name, resourceGroupName, runName, subscriptionId, workflowNameList the workflow run action scoped repetitions.

SELECT examples

List the workflow run action scoped 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.app_service.vw_workflow_run_action_scope_repetitions
WHERE actionName = '{{ actionName }}'
AND name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND runName = '{{ runName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';