workflow_versions
Creates, updates, deletes, gets or lists a workflow_versions resource.
Overview
| Name | workflow_versions |
| Type | Resource |
| Id | azure.web.workflow_versions |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
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 integration account. |
location | string | The geo-location where the resource lives. Required. |
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". (NotSpecified, Accepted, Running, Ready, Creating, Created, Deleting, Deleted, Canceled, Failed, Succeeded, Moving, Updating, Registering, Registered, Unregistering, Unregistered, Completed, Renewing, Pending, Waiting, InProgress) |
sku | object | The sku. |
state | string | The state. Known values are: "NotSpecified", "Completed", "Enabled", "Disabled", "Deleted", and "Suspended". (NotSpecified, Completed, Enabled, Disabled, Deleted, Suspended) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
version | string | Gets the version. |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
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 integration account. |
location | string | The geo-location where the resource lives. Required. |
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". (NotSpecified, Accepted, Running, Ready, Creating, Created, Deleting, Deleted, Canceled, Failed, Succeeded, Moving, Updating, Registering, Registered, Unregistering, Unregistered, Completed, Renewing, Pending, Waiting, InProgress) |
sku | object | The sku. |
state | string | The state. Known values are: "NotSpecified", "Completed", "Enabled", "Disabled", "Deleted", and "Suspended". (NotSpecified, Completed, Enabled, Disabled, Deleted, Suspended) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
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, name, workflow_name, version_id, subscription_id | Gets a workflow version. | |
list | select | resource_group_name, 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 |
|---|---|---|
name | string | Site name. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. 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,
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
;
Gets a list of workflow versions.
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 subscription_id = '{{ subscription_id }}' -- required
AND $top = '{{ $top }}'
;