Skip to main content

workflow_versions

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

Overview

Nameworkflow_versions
TypeResource
Idazure.web.workflow_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
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 integration account.
locationstringThe geo-location where the resource lives. Required.
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". (NotSpecified, Accepted, Running, Ready, Creating, Created, Deleting, Deleted, Canceled, Failed, Succeeded, Moving, Updating, Registering, Registered, Unregistering, Unregistered, Completed, Renewing, Pending, Waiting, InProgress)
skuobjectThe sku.
statestringThe state. Known values are: "NotSpecified", "Completed", "Enabled", "Disabled", "Deleted", and "Suspended". (NotSpecified, Completed, Enabled, Disabled, Deleted, Suspended)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobjectResource tags.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
versionstringGets the version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, name, workflow_name, version_id, subscription_idGets a workflow version.
listselectresource_group_name, 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
namestringSite name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. 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,
systemData,
tags,
type,
version
FROM azure.web.workflow_versions
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND name = '{{ name }}' -- required
AND workflow_name = '{{ workflow_name }}' -- required
AND version_id = '{{ version_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;