workflow_versions
Creates, updates, deletes, gets or lists a workflow_versions
resource.
Overview
Name | workflow_versions |
Type | Resource |
Id | azure.logic_apps.workflow_versions |
Fields
- vw_workflow_versions
- workflow_versions
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the resource name. |
access_control | text | field from the properties object |
access_endpoint | text | field from the properties object |
changed_time | text | field from the properties object |
created_time | text | field from the properties object |
definition | text | field from the properties object |
endpoints_configuration | text | field from the properties object |
integration_account | text | field from the properties object |
location | text | The resource location. |
parameters | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
sku | text | field from the properties object |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The resource tags. |
type | text | Gets the resource type. |
version | text | field from the properties object |
versionId | text | field from the properties object |
workflowName | text | field from the properties object |
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, subscriptionId, versionId, workflowName | Gets a workflow version. |
list | SELECT | resourceGroupName, subscriptionId, workflowName | Gets a list of workflow versions. |
SELECT
examples
Gets a list of workflow versions.
- vw_workflow_versions
- 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 }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.workflow_versions
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workflowName = '{{ workflowName }}';