Skip to main content

business_process_versions

Creates, updates, deletes, gets or lists a business_process_versions resource.

Overview

Namebusiness_process_versions
TypeResource
Idazure.integration_environment.business_process_versions

Fields

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, spaceName, applicationName, businessProcessName, businessProcessVersionGet a BusinessProcessVersion
list_by_business_processselectsubscriptionId, resourceGroupName, spaceName, applicationName, businessProcessNametop, skip, maxpagesize, filter, select, expand, orderbyList 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.

NameDatatypeDescription
applicationNamestringThe name of the Application
businessProcessNamestringThe name of the business process
businessProcessVersionstringThe version of the business process
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
spaceNamestringThe name of the space
subscriptionIdstringThe ID of the target subscription.
expandarrayExpand the indicated resources into the response.
filterstringFilter the result list using the given expression.
maxpagesizeinteger (int32)The maximum number of result items per page.
orderbyarrayExpressions that specify the order of returned results.
selectarraySelect the specified fields to be included in the response.
skipinteger (int32)The number of result items to skip.
topinteger (int32)The number of result items to return.

SELECT examples

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
;