integration_account_maps
Creates, updates, deletes, gets or lists an integration_account_maps
resource.
Overview
Name | integration_account_maps |
Type | Resource |
Id | azure.logic_apps.integration_account_maps |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The integration account map properties. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The integration account map properties. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , integrationAccountName , mapName | api-version | Gets an integration account map. |
list | select | subscriptionId , resourceGroupName , integrationAccountName | api-version , $top , $filter | Gets a list of integration account maps. |
create_or_update | insert | subscriptionId , resourceGroupName , integrationAccountName , mapName , data__properties | api-version | 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. |
delete | delete | subscriptionId , resourceGroupName , integrationAccountName , mapName | api-version | Deletes 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.
Name | Datatype | Description |
---|---|---|
integrationAccountName | string | The integration account name. |
mapName | string | The integration account map name. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription id. |
$filter | string | The filter to apply on the operation. Options for filters include: MapType. |
$top | integer (int32) | The number of items to be included in the result. |
api-version | string | The API version. |
SELECT
examples
- get
- list
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 }}'
;
Gets a list of integration account maps.
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 api-version = '{{ api-version }}'
AND $top = '{{ $top }}'
AND $filter = '{{ $filter }}'
;
INSERT
examples
- create_or_update
- Manifest
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
;
# Description fields are for documentation purposes
- name: integration_account_maps
props:
- name: subscriptionId
value: string
description: Required parameter for the integration_account_maps resource.
- name: resourceGroupName
value: string
description: Required parameter for the integration_account_maps resource.
- name: integrationAccountName
value: string
description: Required parameter for the integration_account_maps resource.
- name: mapName
value: string
description: Required parameter for the integration_account_maps resource.
- name: properties
value: object
description: |
The integration account map properties.
- name: location
value: string
description: |
The resource location.
- name: tags
value: object
description: |
The resource tags.
- name: api-version
value: string
description: The API version.
DELETE
examples
- delete
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 }}'
;