Skip to main content

workflow_run_operations

Creates, updates, deletes, gets or lists a workflow_run_operations resource.

Overview

Nameworkflow_run_operations
TypeResource
Idazure.logic_apps.workflow_run_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the workflow run name.
propertiesobjectThe workflow run properties.
typestringGets the workflow run type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workflowName, runName, operationIdapi-versionGets 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.

NameDatatypeDescription
operationIdstringThe workflow operation id.
resourceGroupNamestringThe resource group name.
runNamestringThe workflow run name.
subscriptionIdstringThe subscription id.
workflowNamestringThe workflow name.
api-versionstringThe API version.

SELECT examples

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 }}'
;