Skip to main content

workflow_versions

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

Overview

Nameworkflow_versions
TypeResource
Idazure.logic.workflow_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
accessControlobjectThe access control configuration.
accessEndpointstringGets the access endpoint.
changedTimestring (date-time)Gets the changed time.
createdTimestring (date-time)Gets the created time.
definitionobjectThe definition.
endpointsConfigurationobjectThe endpoints configuration.
integrationAccountobjectThe resource reference. Variables are only populated by the server, and will be ignored when sending a request.
locationstringThe resource location.
parametersobjectThe parameters.
provisioningStatestringThe provisioning state. Known values are: "NotSpecified", "Accepted", "Running", "Ready", "Creating", "Created", "Deleting", "Deleted", "Canceled", "Failed", "Succeeded", "Moving", "Updating", "Registering", "Registered", "Unregistering", "Unregistered", "Completed", "Renewing", "Pending", "Waiting", and "InProgress".
skuobjectThe sku.
statestringThe state. Known values are: "NotSpecified", "Completed", "Enabled", "Disabled", "Deleted", and "Suspended".
tagsobjectThe resource tags.
typestringGets the resource type.
versionstringGets the version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, workflow_name, version_id, subscription_idGets a workflow version.
listselectresource_group_name, workflow_name, subscription_id$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
resource_group_namestringThe resource group name. Required.
subscription_idstring
version_idstringThe workflow versionId. Required.
workflow_namestringThe workflow name. Required.
$topintegerThe number of items to be included in the result. Default value is None.

SELECT examples

Gets a workflow version.

SELECT
id,
name,
accessControl,
accessEndpoint,
changedTime,
createdTime,
definition,
endpointsConfiguration,
integrationAccount,
location,
parameters,
provisioningState,
sku,
state,
tags,
type,
version
FROM azure.logic.workflow_versions
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workflow_name = '{{ workflow_name }}' -- required
AND version_id = '{{ version_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;