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

NameDatatypeDescription
idtextThe resource id.
nametextGets the resource name.
access_controltextfield from the properties object
access_endpointtextfield from the properties object
changed_timetextfield from the properties object
created_timetextfield from the properties object
definitiontextfield from the properties object
endpoints_configurationtextfield from the properties object
integration_accounttextfield from the properties object
locationtextThe resource location.
parameterstextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
skutextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextThe resource tags.
typetextGets the resource type.
versiontextfield from the properties object
versionIdtextfield from the properties object
workflowNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, subscriptionId, versionId, workflowNameGets a workflow version.
listSELECTresourceGroupName, subscriptionId, workflowNameGets a list of workflow versions.

SELECT examples

Gets a list of workflow versions.

SELECT
id,
name,
access_control,
access_endpoint,
changed_time,
created_time,
definition,
endpoints_configuration,
integration_account,
location,
parameters,
provisioning_state,
resourceGroupName,
sku,
state,
subscriptionId,
tags,
type,
version,
versionId,
workflowName
FROM azure.logic_apps.vw_workflow_versions
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';