applications
Creates, updates, deletes, gets or lists an applications
resource.
Overview
Name | applications |
Type | Resource |
Id | azure.integration_environment.applications |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_space
ARM operation completed successfully.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | The resource-specific properties for this resource. |
tags | object | Resource tags. |
ARM operation completed successfully.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | The resource-specific properties for this resource. |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , spaceName , applicationName | Get a Application | |
list_by_space | select | subscriptionId , resourceGroupName , spaceName | top , skip , maxpagesize , filter , select , expand , orderby | List Application resources by Space |
create_or_update | insert | subscriptionId , resourceGroupName , spaceName , applicationName | Create a Application | |
patch | update | subscriptionId , resourceGroupName , spaceName , applicationName | Update a Application | |
delete | delete | subscriptionId , resourceGroupName , spaceName , applicationName | Delete a Application | |
save_business_process_development_artifact | exec | subscriptionId , resourceGroupName , spaceName , applicationName , name | The save business process development artifact action. | |
validate_business_process_development_artifact | exec | subscriptionId , resourceGroupName , spaceName , applicationName , name | The validate business process development artifact action. |
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 |
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_space
Get a Application
SELECT
location,
properties,
tags
FROM azure.integration_environment.applications
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND spaceName = '{{ spaceName }}' -- required
AND applicationName = '{{ applicationName }}' -- required
;
List Application resources by Space
SELECT
location,
properties,
tags
FROM azure.integration_environment.applications
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND spaceName = '{{ spaceName }}' -- required
AND top = '{{ top }}'
AND skip = '{{ skip }}'
AND maxpagesize = '{{ maxpagesize }}'
AND filter = '{{ filter }}'
AND select = '{{ select }}'
AND expand = '{{ expand }}'
AND orderby = '{{ orderby }}'
;
INSERT
examples
- create_or_update
- Manifest
Create a Application
INSERT INTO azure.integration_environment.applications (
data__properties,
data__tags,
data__location,
subscriptionId,
resourceGroupName,
spaceName,
applicationName
)
SELECT
'{{ properties }}',
'{{ tags }}',
'{{ location }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ spaceName }}',
'{{ applicationName }}'
RETURNING
location,
properties,
tags
;
# Description fields are for documentation purposes
- name: applications
props:
- name: subscriptionId
value: string
description: Required parameter for the applications resource.
- name: resourceGroupName
value: string
description: Required parameter for the applications resource.
- name: spaceName
value: string
description: Required parameter for the applications resource.
- name: applicationName
value: string
description: Required parameter for the applications resource.
- name: properties
value: object
description: |
The resource-specific properties for this resource.
- name: tags
value: object
description: |
Resource tags.
- name: location
value: string
description: |
The geo-location where the resource lives
UPDATE
examples
- patch
Update a Application
UPDATE azure.integration_environment.applications
SET
data__tags = '{{ tags }}',
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND spaceName = '{{ spaceName }}' --required
AND applicationName = '{{ applicationName }}' --required
RETURNING
location,
properties,
tags;
DELETE
examples
- delete
Delete a Application
DELETE FROM azure.integration_environment.applications
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND spaceName = '{{ spaceName }}' --required
AND applicationName = '{{ applicationName }}' --required
;
Lifecycle Methods
- save_business_process_development_artifact
- validate_business_process_development_artifact
The save business process development artifact action.
EXEC azure.integration_environment.applications.save_business_process_development_artifact
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@spaceName='{{ spaceName }}' --required,
@applicationName='{{ applicationName }}' --required
@@json=
'{
"name": "{{ name }}",
"properties": "{{ properties }}"
}'
;
The validate business process development artifact action.
EXEC azure.integration_environment.applications.validate_business_process_development_artifact
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@spaceName='{{ spaceName }}' --required,
@applicationName='{{ applicationName }}' --required
@@json=
'{
"name": "{{ name }}",
"properties": "{{ properties }}"
}'
;