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.web.workflow_run_action_scope_repetitions |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
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 geo-location where the resource lives. Required. |
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". (NotSpecified, Paused, Running, Waiting, Succeeded, Skipped, Suspended, Cancelled, Failed, Faulted, TimedOut, Aborted, Ignored) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
trackedProperties | object | Gets the tracked properties. |
trackingId | string | Gets the tracking id. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
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 geo-location where the resource lives. Required. |
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". (NotSpecified, Paused, Running, Waiting, Succeeded, Skipped, Suspended, Cancelled, Failed, Faulted, TimedOut, Aborted, Ignored) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
trackedProperties | object | Gets the tracked properties. |
trackingId | string | Gets the tracking id. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, name, workflow_name, run_name, action_name, repetition_name, subscription_id | Get a workflow run action scoped repetition. | |
list | select | resource_group_name, 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. |
name | string | Site name. Required. |
repetition_name | string | The workflow repetition. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. 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,
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
;
List the workflow run action scoped repetitions.
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 subscription_id = '{{ subscription_id }}' -- required
;