Skip to main content

integration_account_maps

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

Overview

Nameintegration_account_maps
TypeResource
Idazure.logic_apps.integration_account_maps

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
locationstringThe resource location.
propertiesobjectThe integration account map properties.
tagsobjectThe resource tags.
typestringGets the resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, integrationAccountName, mapNameapi-versionGets an integration account map.
listselectsubscriptionId, resourceGroupName, integrationAccountNameapi-version, $top, $filterGets a list of integration account maps.
create_or_updateinsertsubscriptionId, resourceGroupName, integrationAccountName, mapName, data__propertiesapi-versionCreates or updates an integration account map. If the map is larger than 4 MB, you need to store the map in an Azure blob and use the blob's Shared Access Signature (SAS) URL as the 'contentLink' property value.
deletedeletesubscriptionId, resourceGroupName, integrationAccountName, mapNameapi-versionDeletes an integration account map.

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
integrationAccountNamestringThe integration account name.
mapNamestringThe integration account map name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription id.
$filterstringThe filter to apply on the operation. Options for filters include: MapType.
$topinteger (int32)The number of items to be included in the result.
api-versionstringThe API version.

SELECT examples

Gets an integration account map.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_account_maps
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND integrationAccountName = '{{ integrationAccountName }}' -- required
AND mapName = '{{ mapName }}' -- required
AND api-version = '{{ api-version }}'
;

INSERT examples

Creates or updates an integration account map. If the map is larger than 4 MB, you need to store the map in an Azure blob and use the blob's Shared Access Signature (SAS) URL as the 'contentLink' property value.

INSERT INTO azure.logic_apps.integration_account_maps (
data__properties,
data__location,
data__tags,
subscriptionId,
resourceGroupName,
integrationAccountName,
mapName,
api-version
)
SELECT
'{{ properties }}' /* required */,
'{{ location }}',
'{{ tags }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ integrationAccountName }}',
'{{ mapName }}',
'{{ api-version }}'
RETURNING
id,
name,
location,
properties,
tags,
type
;

DELETE examples

Deletes an integration account map.

DELETE FROM azure.logic_apps.integration_account_maps
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND integrationAccountName = '{{ integrationAccountName }}' --required
AND mapName = '{{ mapName }}' --required
AND api-version = '{{ api-version }}'
;