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.integration_account_maps

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
changedTimestring (date-time)The changed time.
contentstringThe content.
contentLinkobjectThe content link.
contentTypestringThe content type.
createdTimestring (date-time)The created time.
locationstringThe resource location.
mapTypestringThe map type. Required. Known values are: "NotSpecified", "Xslt", "Xslt20", "Xslt30", and "Liquid".
metadataobjectThe metadata.
parametersSchemaobjectThe parameters schema of integration account map.
tagsobjectThe resource tags.
typestringGets the resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, integration_account_name, map_name, subscription_idGets an integration account map.
listselectresource_group_name, integration_account_name, subscription_id$top, $filterGets a list of integration account maps.
create_or_updateinsertresource_group_name, integration_account_name, map_name, subscription_id, propertiesCreates 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.
create_or_updatereplaceresource_group_name, integration_account_name, map_name, subscription_id, propertiesCreates 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.
deletedeleteresource_group_name, integration_account_name, map_name, subscription_idDeletes an integration account map.
list_content_callback_urlexecresource_group_name, integration_account_name, map_name, subscription_idGet the content callback url.

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
integration_account_namestringThe integration account name. Required.
map_namestringThe integration account map name. Required.
resource_group_namestringThe resource group name. Required.
subscription_idstring
$filterstringThe filter to apply on the operation. Options for filters include: MapType. Default value is None.
$topintegerThe number of items to be included in the result. Default value is None.

SELECT examples

Gets an integration account map.

SELECT
id,
name,
changedTime,
content,
contentLink,
contentType,
createdTime,
location,
mapType,
metadata,
parametersSchema,
tags,
type
FROM azure.logic.integration_account_maps
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND integration_account_name = '{{ integration_account_name }}' -- required
AND map_name = '{{ map_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

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.integration_account_maps (
location,
tags,
properties,
resource_group_name,
integration_account_name,
map_name,
subscription_id
)
SELECT
'{{ location }}',
'{{ tags }}',
'{{ properties }}' /* required */,
'{{ resource_group_name }}',
'{{ integration_account_name }}',
'{{ map_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
location,
properties,
tags,
type
;

REPLACE 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.

REPLACE azure.logic.integration_account_maps
SET
location = '{{ location }}',
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND integration_account_name = '{{ integration_account_name }}' --required
AND map_name = '{{ map_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
AND properties = '{{ properties }}' --required
RETURNING
id,
name,
location,
properties,
tags,
type;

DELETE examples

Deletes an integration account map.

DELETE FROM azure.logic.integration_account_maps
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND integration_account_name = '{{ integration_account_name }}' --required
AND map_name = '{{ map_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

Get the content callback url.

EXEC azure.logic.integration_account_maps.list_content_callback_url 
@resource_group_name='{{ resource_group_name }}' --required,
@integration_account_name='{{ integration_account_name }}' --required,
@map_name='{{ map_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"notAfter": "{{ notAfter }}",
"keyType": "{{ keyType }}"
}'
;