integration_account_maps
Creates, updates, deletes, gets or lists a integration_account_maps
resource.
Overview
Name | integration_account_maps |
Type | Resource |
Id | azure.logic_apps.integration_account_maps |
Fields
- vw_integration_account_maps
- integration_account_maps
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the resource name. |
changed_time | text | field from the properties object |
content | text | field from the properties object |
content_link | text | field from the properties object |
content_type | text | field from the properties object |
created_time | text | field from the properties object |
integrationAccountName | text | field from the properties object |
location | text | The resource location. |
mapName | text | field from the properties object |
map_type | text | field from the properties object |
metadata | text | field from the properties object |
parameters_schema | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The resource tags. |
type | text | 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. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | integrationAccountName, mapName, resourceGroupName, subscriptionId | Gets an integration account map. |
list | SELECT | integrationAccountName, resourceGroupName, subscriptionId | Gets a list of integration account maps. |
create_or_update | INSERT | integrationAccountName, mapName, resourceGroupName, subscriptionId, data__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 | integrationAccountName, mapName, resourceGroupName, subscriptionId | Deletes an integration account map. |
SELECT
examples
Gets a list of integration account maps.
- vw_integration_account_maps
- integration_account_maps
SELECT
id,
name,
changed_time,
content,
content_link,
content_type,
created_time,
integrationAccountName,
location,
mapName,
map_type,
metadata,
parameters_schema,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure.logic_apps.vw_integration_account_maps
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_account_maps
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new integration_account_maps
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.logic_apps.integration_account_maps (
integrationAccountName,
mapName,
resourceGroupName,
subscriptionId,
data__properties,
properties,
location,
tags
)
SELECT
'{{ integrationAccountName }}',
'{{ mapName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ location }}',
'{{ tags }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: mapType
value: []
- name: parametersSchema
value:
- name: ref
value: string
- name: createdTime
value: string
- name: changedTime
value: string
- name: content
value: string
- name: contentType
value: string
- name: contentLink
value:
- name: uri
value: string
- name: contentVersion
value: string
- name: contentSize
value: integer
- name: contentHash
value:
- name: algorithm
value: string
- name: value
value: string
- name: metadata
value: []
- name: metadata
value: []
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: location
value: string
- name: tags
value: object
DELETE
example
Deletes the specified integration_account_maps
resource.
/*+ delete */
DELETE FROM azure.logic_apps.integration_account_maps
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND mapName = '{{ mapName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';