Skip to main content

workflow_versions

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

Overview

Nameworkflow_versions
TypeResource
Idazure.app_service.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, name, workflowName, versionIdGets a workflow version.
listselectsubscriptionId, resourceGroupName, name, workflowName$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
namestringSite name.
resourceGroupNamestringName of the resource group to which the resource belongs.
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).
versionIdstringThe workflow versionId.
workflowNamestringThe workflow name.
$topinteger (int32)The number of items to be included in the result.

SELECT examples

Gets a workflow version.

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