swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector BusinessProcessVersions API schemes: - https tags: - name: BusinessProcessVersions paths: ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IntegrationSpaces/spaces/{spaceName}/applications/{applicationName}/businessProcesses/{businessProcessName}/versions : get: operationId: microsoftAzureBusinessprocessversionsListbybusinessprocess tags: - BusinessProcessVersions description: List BusinessProcessVersion resources by BusinessProcess parameters: - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter - $ref: '#/parameters/Azure.Core.TopQueryParameter' - $ref: '#/parameters/Azure.Core.SkipQueryParameter' - $ref: '#/parameters/Azure.Core.MaxPageSizeQueryParameter' - $ref: '#/parameters/Azure.Core.FilterQueryParameter' - $ref: '#/parameters/Azure.Core.SelectQueryParameter' - $ref: '#/parameters/Azure.Core.ExpandQueryParameter' - $ref: '#/parameters/Azure.Core.OrderByQueryParameter' - name: spaceName in: path description: The name of the space required: true type: string pattern: '[a-zA-Z0-9_.()-]{0,79}$' - name: applicationName in: path description: The name of the Application required: true type: string pattern: '[a-zA-Z0-9_.()-]{0,79}$' - name: businessProcessName in: path description: The name of the business process required: true type: string pattern: '[a-zA-Z0-9_.()-]{0,79}$' responses: '200': description: ARM operation completed successfully. schema: $ref: '#/definitions/BusinessProcessVersionListResult' default: description: An unexpected error response. schema: $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse x-ms-examples: ListBusinessProcessVersionsByBusinessProcess: $ref: ./examples/BusinessProcessVersions_ListByBusinessProcess.json x-ms-pageable: nextLinkName: nextLink summary: Microsoft Azure Get Subscriptions Subscriptionid Resourcegroups Resourcegroupname Providers Microsoft Integrationspaces Spaces Spacename Applications Applicationname Businessprocesses Businessprocessname Versions ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IntegrationSpaces/spaces/{spaceName}/applications/{applicationName}/businessProcesses/{businessProcessName}/versions/{businessProcessVersion} : get: operationId: microsoftAzureBusinessprocessversionsGet tags: - BusinessProcessVersions description: Get a BusinessProcessVersion parameters: - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter - name: spaceName in: path description: The name of the space required: true type: string pattern: '[a-zA-Z0-9_.()-]{0,79}$' - name: applicationName in: path description: The name of the Application required: true type: string pattern: '[a-zA-Z0-9_.()-]{0,79}$' - name: businessProcessName in: path description: The name of the business process required: true type: string pattern: '[a-zA-Z0-9_.()-]{0,79}$' - name: businessProcessVersion in: path description: The version of the business process required: true type: string responses: '200': description: ARM operation completed successfully. schema: $ref: '#/definitions/BusinessProcessVersion' default: description: An unexpected error response. schema: $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse x-ms-examples: GetBusinessProcessVersion: $ref: ./examples/BusinessProcessVersions_Get.json summary: Microsoft Azure Get Subscriptions Subscriptionid Resourcegroups Resourcegroupname Providers Microsoft Integrationspaces Spaces Spacename Applications Applicationname Businessprocesses Businessprocessname Versions Businessprocessversion definitions: BusinessProcessVersion: type: object description: A business process version. properties: properties: $ref: '#/definitions/BusinessProcessProperties' description: The resource-specific properties for this resource. x-ms-client-flatten: true x-ms-mutability: - read - create allOf: - $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/ProxyResource BusinessProcessVersionListResult: type: object description: The response of a BusinessProcessVersion list operation. properties: value: type: array description: The BusinessProcessVersion items on this page items: $ref: '#/definitions/BusinessProcessVersion' nextLink: type: string format: uri description: The link to the next page of items required: - value BusinessProcessIdentifier: type: object description: The properties of business process identifier. properties: propertyName: type: string description: The property name of the business process identifier. propertyType: type: string description: The property type of the business process identifier. ProvisioningState: type: string description: The status of the current operation. enum: - Succeeded - Failed - Canceled - Provisioning - Updating - Deleting - Accepted x-ms-enum: name: ProvisioningState modelAsString: true values: - name: Succeeded value: Succeeded description: Resource has been created. - name: Failed value: Failed description: Resource creation failed. - name: Canceled value: Canceled description: Resource creation was canceled. - name: Provisioning value: Provisioning - name: Updating value: Updating - name: Deleting value: Deleting - name: Accepted value: Accepted BusinessProcessStage: type: object description: The properties of business process stage. properties: description: type: string description: The description of the business stage. properties: type: object description: The properties within the properties of the business process stage. additionalProperties: type: string stagesBefore: type: array description: The property to keep track of stages before current in the business process stage. items: type: string BusinessProcessProperties: type: object description: The properties of business process. properties: provisioningState: $ref: '#/definitions/ProvisioningState' description: The status of the last operation. readOnly: true version: type: string description: The version of the business process. readOnly: true description: type: string description: The description of the business process. tableName: type: string description: The table name of the business process. trackingDataStoreReferenceName: type: string description: The tracking data store reference name. identifier: $ref: '#/definitions/BusinessProcessIdentifier' description: The business process identifier. businessProcessStages: type: object description: The business process stages. additionalProperties: $ref: '#/definitions/BusinessProcessStage' businessProcessMapping: type: object description: The business process mapping. additionalProperties: $ref: '#/definitions/BusinessProcessMappingItem' BusinessProcessMappingItem: type: object description: The properties of business process mapping. properties: logicAppResourceId: type: string description: The logic app resource id. workflowName: type: string description: The workflow name within the logic app. operationName: type: string description: The operation name. operationType: type: string description: The mapping item operation type of the business process. parameters: Azure.Core.MaxPageSizeQueryParameter: name: maxpagesize in: query description: The maximum number of result items per page. required: false type: integer format: int32 x-ms-parameter-location: method Azure.Core.OrderByQueryParameter: name: orderby in: query description: Expressions that specify the order of returned results. required: false type: array items: type: string collectionFormat: multi x-ms-parameter-location: method Azure.Core.ExpandQueryParameter: name: expand in: query description: Expand the indicated resources into the response. required: false type: array items: type: string collectionFormat: multi x-ms-parameter-location: method Azure.Core.SkipQueryParameter: name: skip in: query description: The number of result items to skip. required: false type: integer format: int32 default: 0 x-ms-parameter-location: method Azure.Core.TopQueryParameter: name: top in: query description: The number of result items to return. required: false type: integer format: int32 x-ms-parameter-location: method Azure.Core.FilterQueryParameter: name: filter in: query description: Filter the result list using the given expression. required: false type: string x-ms-parameter-location: method Azure.Core.SelectQueryParameter: name: select in: query description: Select the specified fields to be included in the response. required: false type: array items: type: string collectionFormat: multi x-ms-parameter-location: method x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'