workflow_versions
Creates, updates, deletes, gets or lists a workflow_versions
resource.
Overview
Name | workflow_versions |
Type | Resource |
Id | azure.app_service.workflow_versions |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The workflow version properties. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The workflow version properties. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , name , workflowName , versionId | Gets a workflow version. | |
list | select | subscriptionId , resourceGroupName , name , workflowName | $top | Gets 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.
Name | Datatype | Description |
---|---|---|
name | string | Site name. |
resourceGroupName | string | Name of the resource group to which the resource belongs. |
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
versionId | string | The workflow versionId. |
workflowName | string | The workflow name. |
$top | integer (int32) | The number of items to be included in the result. |
SELECT
examples
- get
- list
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
;
Gets a list of workflow versions.
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 $top = '{{ $top }}'
;