workflow_run_action_scope_repetitions
Creates, updates, deletes, gets or lists a workflow_run_action_scope_repetitions resource.
Overview
| Name | workflow_run_action_scope_repetitions |
| Type | Resource |
| Id | azure.logic.workflow_run_action_scope_repetitions |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
code | string | The workflow scope repetition code. |
correlation | object | The correlation properties. |
endTime | string (date-time) | The end time of the workflow scope repetition. |
error | object | Anything. |
inputs | object | Gets the inputs. |
inputsLink | object | Gets the link to inputs. |
iterationCount | integer | :vartype iteration_count: int |
location | string | The resource location. |
outputs | object | Gets the outputs. |
outputsLink | object | Gets the link to outputs. |
repetitionIndexes | array | The repetition indexes. |
retryHistory | array | Gets the retry histories. |
startTime | string (date-time) | The start time of the workflow scope repetition. |
status | string | The status of the workflow scope repetition. Known values are: "NotSpecified", "Paused", "Running", "Waiting", "Succeeded", "Skipped", "Suspended", "Cancelled", "Failed", "Faulted", "TimedOut", "Aborted", and "Ignored". |
tags | object | The resource tags. |
trackedProperties | object | Gets the tracked properties. |
trackingId | string | Gets the tracking id. |
type | string | Gets the resource type. |
| Name | Datatype | Description |
|---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
code | string | The workflow scope repetition code. |
correlation | object | The correlation properties. |
endTime | string (date-time) | The end time of the workflow scope repetition. |
error | object | Anything. |
inputs | object | Gets the inputs. |
inputsLink | object | Gets the link to inputs. |
iterationCount | integer | :vartype iteration_count: int |
location | string | The resource location. |
outputs | object | Gets the outputs. |
outputsLink | object | Gets the link to outputs. |
repetitionIndexes | array | The repetition indexes. |
retryHistory | array | Gets the retry histories. |
startTime | string (date-time) | The start time of the workflow scope repetition. |
status | string | The status of the workflow scope repetition. Known values are: "NotSpecified", "Paused", "Running", "Waiting", "Succeeded", "Skipped", "Suspended", "Cancelled", "Failed", "Faulted", "TimedOut", "Aborted", and "Ignored". |
tags | object | The resource tags. |
trackedProperties | object | Gets the tracked properties. |
trackingId | string | Gets the tracking id. |
type | string | Gets the resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, workflow_name, run_name, action_name, repetition_name, subscription_id | Get a workflow run action scoped repetition. | |
list | select | resource_group_name, workflow_name, run_name, action_name, subscription_id | List 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.
| Name | Datatype | Description |
|---|---|---|
action_name | string | The workflow action name. Required. |
repetition_name | string | The workflow repetition. Required. |
resource_group_name | string | The resource group name. Required. |
run_name | string | The workflow run name. Required. |
subscription_id | string | |
workflow_name | string | The workflow name. Required. |
SELECT examples
- get
- list
Get a workflow run action scoped repetition.
SELECT
id,
name,
code,
correlation,
endTime,
error,
inputs,
inputsLink,
iterationCount,
location,
outputs,
outputsLink,
repetitionIndexes,
retryHistory,
startTime,
status,
tags,
trackedProperties,
trackingId,
type
FROM azure.logic.workflow_run_action_scope_repetitions
WHERE resource_group_name = '{{ resource_group_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
;
List the workflow run action scoped repetitions.
SELECT
id,
name,
code,
correlation,
endTime,
error,
inputs,
inputsLink,
iterationCount,
location,
outputs,
outputsLink,
repetitionIndexes,
retryHistory,
startTime,
status,
tags,
trackedProperties,
trackingId,
type
FROM azure.logic.workflow_run_action_scope_repetitions
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workflow_name = '{{ workflow_name }}' -- required
AND run_name = '{{ run_name }}' -- required
AND action_name = '{{ action_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;