integration_account_maps
Creates, updates, deletes, gets or lists an integration_account_maps resource.
Overview
| Name | integration_account_maps |
| Type | Resource |
| Id | azure.logic.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. |
changedTime | string (date-time) | The changed time. |
content | string | The content. |
contentLink | object | The content link. |
contentType | string | The content type. |
createdTime | string (date-time) | The created time. |
location | string | The resource location. |
mapType | string | The map type. Required. Known values are: "NotSpecified", "Xslt", "Xslt20", "Xslt30", and "Liquid". |
metadata | object | The metadata. |
parametersSchema | object | The parameters schema of integration account map. |
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. |
changedTime | string (date-time) | The changed time. |
content | string | The content. |
contentLink | object | The content link. |
contentType | string | The content type. |
createdTime | string (date-time) | The created time. |
location | string | The resource location. |
mapType | string | The map type. Required. Known values are: "NotSpecified", "Xslt", "Xslt20", "Xslt30", and "Liquid". |
metadata | object | The metadata. |
parametersSchema | object | The parameters schema of integration account map. |
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 | resource_group_name, integration_account_name, map_name, subscription_id | Gets an integration account map. | |
list | select | resource_group_name, integration_account_name, subscription_id | $top, $filter | Gets a list of integration account maps. |
create_or_update | insert | resource_group_name, integration_account_name, map_name, subscription_id, properties | 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. | |
create_or_update | replace | resource_group_name, integration_account_name, map_name, subscription_id, properties | 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 | resource_group_name, integration_account_name, map_name, subscription_id | Deletes an integration account map. | |
list_content_callback_url | exec | resource_group_name, integration_account_name, map_name, subscription_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
integration_account_name | string | The integration account name. Required. |
map_name | string | The integration account map name. Required. |
resource_group_name | string | The resource group name. Required. |
subscription_id | string | |
$filter | string | The filter to apply on the operation. Options for filters include: MapType. Default value is None. |
$top | integer | The number of items to be included in the result. Default value is None. |
SELECT examples
- get
- list
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
;
Gets a list of integration account maps.
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 subscription_id = '{{ subscription_id }}' -- required
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.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
;
# Description fields are for documentation purposes
- name: integration_account_maps
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the integration_account_maps resource.
- name: integration_account_name
value: "{{ integration_account_name }}"
description: Required parameter for the integration_account_maps resource.
- name: map_name
value: "{{ map_name }}"
description: Required parameter for the integration_account_maps resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the integration_account_maps resource.
- name: location
value: "{{ location }}"
description: |
The resource location.
- name: tags
value: "{{ tags }}"
description: |
The resource tags.
- name: properties
value:
mapType: "{{ mapType }}"
parametersSchema:
ref: "{{ ref }}"
content: "{{ content }}"
contentType: "{{ contentType }}"
metadata: "{{ metadata }}"
REPLACE examples
- create_or_update
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
- delete
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
- list_content_callback_url
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 }}"
}'
;