Skip to main content

workflow_versions

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

Overview

Nameworkflow_versions
TypeResource
Idazure.logic_apps.workflow_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
locationstringThe resource location.
propertiesobjectThe workflow version properties.
tagsobjectThe resource tags.
typestringGets the resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workflowName, versionIdapi-versionGets a workflow version.
listselectsubscriptionId, resourceGroupName, workflowNameapi-version, $topGets a list of workflow versions.

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
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription id.
versionIdstringThe workflow versionId.
workflowNamestringThe workflow name.
$topinteger (int32)The number of items to be included in the result.
api-versionstringThe API version.

SELECT examples

Gets a workflow version.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.workflow_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workflowName = '{{ workflowName }}' -- required
AND versionId = '{{ versionId }}' -- required
AND api-version = '{{ api-version }}'
;