applications_business_process_development_artifacts
Creates, updates, deletes, gets or lists a applications_business_process_development_artifacts
resource.
Overview
Name | applications_business_process_development_artifacts |
Type | Resource |
Id | azure.integration_environment.applications_business_process_development_artifacts |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the business process development artifact. |
properties | object | The properties of business process development artifact. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | applicationName, resourceGroupName, spaceName, subscriptionId, data__name | The get business process development artifact action. |
list | SELECT | applicationName, resourceGroupName, spaceName, subscriptionId | The list business process development artifacts action. |
delete | DELETE | applicationName, resourceGroupName, spaceName, subscriptionId, data__name | The delete business process development artifact action. |
SELECT
examples
The list business process development artifacts action.
SELECT
name,
properties,
systemData
FROM azure.integration_environment.applications_business_process_development_artifacts
WHERE applicationName = '{{ applicationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND spaceName = '{{ spaceName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified applications_business_process_development_artifacts
resource.
/*+ delete */
DELETE FROM azure.integration_environment.applications_business_process_development_artifacts
WHERE applicationName = '{{ applicationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND spaceName = '{{ spaceName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__name = '{{ data__name }}';