Skip to main content

application_resources

Creates, updates, deletes, gets or lists an application_resources resource.

Overview

Nameapplication_resources
TypeResource
Idazure.integration_environment.application_resources

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, resourceNameGet a ApplicationResource
list_by_applicationselectsubscriptionId, resourceGroupName, spaceName, applicationNametop, skip, maxpagesize, filter, select, expand, orderbyList ApplicationResource resources by Application
create_or_updateinsertsubscriptionId, resourceGroupName, spaceName, applicationName, resourceNameCreate a ApplicationResource
patchupdatesubscriptionId, resourceGroupName, spaceName, applicationName, resourceNameUpdate a ApplicationResource
deletedeletesubscriptionId, resourceGroupName, spaceName, applicationName, resourceNameDelete a ApplicationResource

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
resourceNamestringThe name of the application resource.
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 ApplicationResource

SELECT
properties
FROM azure.integration_environment.application_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND spaceName = '{{ spaceName }}' -- required
AND applicationName = '{{ applicationName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;

INSERT examples

Create a ApplicationResource

INSERT INTO azure.integration_environment.application_resources (
data__properties,
subscriptionId,
resourceGroupName,
spaceName,
applicationName,
resourceName
)
SELECT
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ spaceName }}',
'{{ applicationName }}',
'{{ resourceName }}'
RETURNING
properties
;

UPDATE examples

Update a ApplicationResource

UPDATE azure.integration_environment.application_resources
SET
data__properties = '{{ properties }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND spaceName = '{{ spaceName }}' --required
AND applicationName = '{{ applicationName }}' --required
AND resourceName = '{{ resourceName }}' --required
RETURNING
properties;

DELETE examples

Delete a ApplicationResource

DELETE FROM azure.integration_environment.application_resources
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND spaceName = '{{ spaceName }}' --required
AND applicationName = '{{ applicationName }}' --required
AND resourceName = '{{ resourceName }}' --required
;