workflow_run_actions
Creates, updates, deletes, gets or lists a workflow_run_actions
resource.
Overview
Name | workflow_run_actions |
Type | Resource |
Id | azure.app_service.workflow_run_actions |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the workflow run action name. |
properties | object | The workflow run action properties. |
type | string | Gets the workflow run action type. |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the workflow run action name. |
properties | object | The workflow run action properties. |
type | string | Gets the workflow run action type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , name , workflowName , runName , actionName | Gets a workflow run action. | |
list | select | subscriptionId , resourceGroupName , name , workflowName , runName | $top , $filter | Gets a list of workflow run actions. |
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. |
name | string | Site name. |
resourceGroupName | string | Name of the resource group to which the resource belongs. |
runName | string | The workflow run name. |
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
workflowName | string | The workflow name. |
$filter | string | The filter to apply on the operation. Options for filters include: Status. |
$top | integer (int32) | The number of items to be included in the result. |
SELECT
examples
- get
- list
Gets a workflow run action.
SELECT
id,
name,
properties,
type
FROM azure.app_service.workflow_run_actions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND runName = '{{ runName }}' -- required
AND actionName = '{{ actionName }}' -- required
;
Gets a list of workflow run actions.
SELECT
id,
name,
properties,
type
FROM azure.app_service.workflow_run_actions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND name = '{{ name }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND runName = '{{ runName }}' -- required
AND $top = '{{ $top }}'
AND $filter = '{{ $filter }}'
;