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.web.workflow_run_action_scope_repetitions

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.
codestringThe workflow scope repetition code.
correlationobjectThe correlation properties.
endTimestring (date-time)The end time of the workflow scope repetition.
errorobjectAnything.
inputsobjectGets the inputs.
inputsLinkobjectGets the link to inputs.
iterationCountinteger:vartype iteration_count: int
locationstringThe geo-location where the resource lives. Required.
outputsobjectGets the outputs.
outputsLinkobjectGets the link to outputs.
repetitionIndexesarrayThe repetition indexes.
retryHistoryarrayGets the retry histories.
startTimestring (date-time)The start time of the workflow scope repetition.
statusstringThe status of the workflow scope repetition. 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.
tagsobjectResource tags.
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, repetition_name, subscription_idGet a workflow run action scoped repetition.
listselectresource_group_name, name, workflow_name, run_name, action_name, subscription_idList the workflow run action scoped 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
action_namestringThe workflow action name. Required.
namestringSite name. Required.
repetition_namestringThe workflow repetition. 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.

SELECT examples

Get a workflow run action scoped repetition.

SELECT
id,
name,
code,
correlation,
endTime,
error,
inputs,
inputsLink,
iterationCount,
location,
outputs,
outputsLink,
repetitionIndexes,
retryHistory,
startTime,
status,
systemData,
tags,
trackedProperties,
trackingId,
type
FROM azure.web.workflow_run_action_scope_repetitions
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 repetition_name = '{{ repetition_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;