applications
Creates, updates, deletes, gets or lists a applications
resource.
Overview
Name | applications |
Type | Resource |
Id | azure.integration_environment.applications |
Fields
- vw_applications
- applications
Name | Datatype | Description |
---|---|---|
description | text | field from the properties object |
applicationName | text | field from the properties object |
location | text | The geo-location where the resource lives |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
spaceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
tracking_data_stores | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | The properties of application. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | applicationName, resourceGroupName, spaceName, subscriptionId | Get a Application |
list_by_space | SELECT | resourceGroupName, spaceName, subscriptionId | List Application resources by Space |
create_or_update | INSERT | applicationName, resourceGroupName, spaceName, subscriptionId | Create a Application |
delete | DELETE | applicationName, resourceGroupName, spaceName, subscriptionId | Delete a Application |
patch | UPDATE | applicationName, resourceGroupName, spaceName, subscriptionId | Update a Application |
save_business_process_development_artifact | EXEC | applicationName, resourceGroupName, spaceName, subscriptionId, data__name | The save business process development artifact action. |
validate_business_process_development_artifact | EXEC | applicationName, resourceGroupName, spaceName, subscriptionId, data__name | The validate business process development artifact action. |
SELECT
examples
List Application resources by Space
- vw_applications
- applications
SELECT
description,
applicationName,
location,
provisioning_state,
resourceGroupName,
spaceName,
subscriptionId,
tags,
tracking_data_stores
FROM azure.integration_environment.vw_applications
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND spaceName = '{{ spaceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
location,
properties,
tags
FROM azure.integration_environment.applications
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND spaceName = '{{ spaceName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new applications
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.integration_environment.applications (
applicationName,
resourceGroupName,
spaceName,
subscriptionId,
properties,
tags,
location
)
SELECT
'{{ applicationName }}',
'{{ resourceGroupName }}',
'{{ spaceName }}',
'{{ subscriptionId }}',
'{{ properties }}',
'{{ tags }}',
'{{ location }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: provisioningState
value: []
- name: description
value: string
- name: trackingDataStores
value: object
- name: tags
value: object
- name: location
value: string
UPDATE
example
Updates a applications
resource.
/*+ update */
UPDATE azure.integration_environment.applications
SET
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
applicationName = '{{ applicationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND spaceName = '{{ spaceName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified applications
resource.
/*+ delete */
DELETE FROM azure.integration_environment.applications
WHERE applicationName = '{{ applicationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND spaceName = '{{ spaceName }}'
AND subscriptionId = '{{ subscriptionId }}';