business_process_versions
Creates, updates, deletes, gets or lists a business_process_versions
resource.
Overview
Name | business_process_versions |
Type | Resource |
Id | azure.integration_environment.business_process_versions |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_business_process
ARM operation completed successfully.
Name | Datatype | Description |
---|---|---|
properties | object | The resource-specific properties for this resource. |
ARM operation completed successfully.
Name | Datatype | Description |
---|---|---|
properties | object | The resource-specific properties for this resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , spaceName , applicationName , businessProcessName , businessProcessVersion | Get a BusinessProcessVersion | |
list_by_business_process | select | subscriptionId , resourceGroupName , spaceName , applicationName , businessProcessName | top , skip , maxpagesize , filter , select , expand , orderby | List BusinessProcessVersion resources by BusinessProcess |
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 |
---|---|---|
applicationName | string | The name of the Application |
businessProcessName | string | The name of the business process |
businessProcessVersion | string | The version of the business process |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
spaceName | string | The name of the space |
subscriptionId | string | The ID of the target subscription. |
expand | array | Expand the indicated resources into the response. |
filter | string | Filter the result list using the given expression. |
maxpagesize | integer (int32) | The maximum number of result items per page. |
orderby | array | Expressions that specify the order of returned results. |
select | array | Select the specified fields to be included in the response. |
skip | integer (int32) | The number of result items to skip. |
top | integer (int32) | The number of result items to return. |
SELECT
examples
- get
- list_by_business_process
Get a BusinessProcessVersion
SELECT
properties
FROM azure.integration_environment.business_process_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND spaceName = '{{ spaceName }}' -- required
AND applicationName = '{{ applicationName }}' -- required
AND businessProcessName = '{{ businessProcessName }}' -- required
AND businessProcessVersion = '{{ businessProcessVersion }}' -- required
;
List BusinessProcessVersion resources by BusinessProcess
SELECT
properties
FROM azure.integration_environment.business_process_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND spaceName = '{{ spaceName }}' -- required
AND applicationName = '{{ applicationName }}' -- required
AND businessProcessName = '{{ businessProcessName }}' -- required
AND top = '{{ top }}'
AND skip = '{{ skip }}'
AND maxpagesize = '{{ maxpagesize }}'
AND filter = '{{ filter }}'
AND select = '{{ select }}'
AND expand = '{{ expand }}'
AND orderby = '{{ orderby }}'
;