workflow_run_operations
Creates, updates, deletes, gets or lists a workflow_run_operations
resource.
Overview
Name | workflow_run_operations |
Type | Resource |
Id | azure.logic_apps.workflow_run_operations |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the workflow run name. |
properties | object | The workflow run properties. |
type | string | Gets the workflow run type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , workflowName , runName , operationId | api-version | Gets an operation for a run. |
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 |
---|---|---|
operationId | string | The workflow operation id. |
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
Gets an operation for a run.
SELECT
id,
name,
properties,
type
FROM azure.logic_apps.workflow_run_operations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND runName = '{{ runName }}' -- required
AND operationId = '{{ operationId }}' -- required
AND api-version = '{{ api-version }}'
;