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.app_service.workflow_run_action_scope_repetitions |
Fields
- vw_workflow_run_action_scope_repetitions
- workflow_run_action_scope_repetitions
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the resource name. |
actionName | text | field from the properties object |
inputs | text | field from the properties object |
inputs_link | text | field from the properties object |
iteration_count | text | field from the properties object |
location | text | The resource location. |
outputs | text | field from the properties object |
outputs_link | text | field from the properties object |
repetitionName | text | field from the properties object |
repetition_indexes | text | field from the properties object |
resourceGroupName | text | field from the properties object |
retry_history | text | field from the properties object |
runName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The resource tags. |
tracked_properties | text | field from the properties object |
tracking_id | text | field from the properties object |
type | text | Gets the resource type. |
workflowName | text | field from the properties object |
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | actionName, name, repetitionName, resourceGroupName, runName, subscriptionId, workflowName | Get a workflow run action scoped repetition. |
list | SELECT | actionName, name, resourceGroupName, runName, subscriptionId, workflowName | List the workflow run action scoped repetitions. |
SELECT
examples
List the workflow run action scoped repetitions.
- vw_workflow_run_action_scope_repetitions
- workflow_run_action_scope_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 }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.app_service.workflow_run_action_scope_repetitions
WHERE actionName = '{{ actionName }}'
AND name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND runName = '{{ runName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';