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_apps.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. |
location | string | The resource location. |
properties | object | The workflow run action repetition properties definition. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
| Name | Datatype | Description |
|---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The workflow run action repetition properties definition. |
tags | object | The resource tags. |
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 | subscriptionId, resourceGroupName, workflowName, runName, actionName, repetitionName | api-version | Get a workflow run action scoped repetition. |
list | select | subscriptionId, resourceGroupName, workflowName, runName, actionName | api-version | 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 |
|---|---|---|
actionName | string | The workflow action name. |
repetitionName | string | The workflow repetition. |
resourceGroupName | string | The resource group name. |
runName | string | The workflow run name. |
subscriptionId | string | The subscription id. |
workflowName | string | The workflow name. |
api-version | string | The API version. |
SELECT examples
- get
- list
Get a workflow run action scoped repetition.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.workflow_run_action_scope_repetitions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND runName = '{{ runName }}' -- required
AND actionName = '{{ actionName }}' -- required
AND repetitionName = '{{ repetitionName }}' -- required
AND api-version = '{{ api-version }}'
;
List the workflow run action scoped repetitions.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.workflow_run_action_scope_repetitions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND runName = '{{ runName }}' -- required
AND actionName = '{{ actionName }}' -- required
AND api-version = '{{ api-version }}'
;