workflow_versions
Creates, updates, deletes, gets or lists a workflow_versions resource.
Overview
| Name | workflow_versions |
| Type | Resource |
| Id | azure.logic.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. |
accessControl | object | The access control configuration. |
accessEndpoint | string | Gets the access endpoint. |
changedTime | string (date-time) | Gets the changed time. |
createdTime | string (date-time) | Gets the created time. |
definition | object | The definition. |
endpointsConfiguration | object | The endpoints configuration. |
integrationAccount | object | The resource reference. Variables are only populated by the server, and will be ignored when sending a request. |
location | string | The resource location. |
parameters | object | The parameters. |
provisioningState | string | The 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". |
sku | object | The sku. |
state | string | The state. Known values are: "NotSpecified", "Completed", "Enabled", "Disabled", "Deleted", and "Suspended". |
tags | object | The resource tags. |
type | string | Gets the resource type. |
version | string | Gets the version. |
| Name | Datatype | Description |
|---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
accessControl | object | The access control configuration. |
accessEndpoint | string | Gets the access endpoint. |
changedTime | string (date-time) | Gets the changed time. |
createdTime | string (date-time) | Gets the created time. |
definition | object | The definition. |
endpointsConfiguration | object | The endpoints configuration. |
integrationAccount | object | The resource reference. Variables are only populated by the server, and will be ignored when sending a request. |
location | string | The resource location. |
parameters | object | The parameters. |
provisioningState | string | The 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". |
sku | object | The sku. |
state | string | The state. Known values are: "NotSpecified", "Completed", "Enabled", "Disabled", "Deleted", and "Suspended". |
tags | object | The resource tags. |
type | string | Gets the resource type. |
version | string | Gets the version. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, workflow_name, version_id, subscription_id | Gets a workflow version. | |
list | select | resource_group_name, workflow_name, subscription_id | $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 |
|---|---|---|
resource_group_name | string | The resource group name. Required. |
subscription_id | string | |
version_id | string | The workflow versionId. Required. |
workflow_name | string | The workflow name. Required. |
$top | integer | The number of items to be included in the result. Default value is None. |
SELECT examples
- get
- list
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
;
Gets a list of workflow versions.
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 subscription_id = '{{ subscription_id }}' -- required
AND $top = '{{ $top }}'
;