vw_integration_account_maps
Creates, updates, deletes, gets or lists a vw_integration_account_maps
resource.
Overview
Name | vw_integration_account_maps |
Type | View |
Id | azure.logic_apps.vw_integration_account_maps |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.mapType') as "map_type",
JSON_EXTRACT(properties, '$.parametersSchema') as "parameters_schema",
JSON_EXTRACT(properties, '$.createdTime') as "created_time",
JSON_EXTRACT(properties, '$.changedTime') as "changed_time",
JSON_EXTRACT(properties, '$.content') as "content",
JSON_EXTRACT(properties, '$.contentType') as "content_type",
JSON_EXTRACT(properties, '$.contentLink') as "content_link",
JSON_EXTRACT(properties, '$.metadata') as "metadata",
subscriptionId,
resourceGroupName,
integrationAccountName,
mapName
FROM azure.logic_apps.integration_account_maps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND integrationAccountName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.mapType') as "map_type",
json_extract_path_text(properties, '$.parametersSchema') as "parameters_schema",
json_extract_path_text(properties, '$.createdTime') as "created_time",
json_extract_path_text(properties, '$.changedTime') as "changed_time",
json_extract_path_text(properties, '$.content') as "content",
json_extract_path_text(properties, '$.contentType') as "content_type",
json_extract_path_text(properties, '$.contentLink') as "content_link",
json_extract_path_text(properties, '$.metadata') as "metadata",
subscriptionId,
resourceGroupName,
integrationAccountName,
mapName
FROM azure.logic_apps.integration_account_maps
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND integrationAccountName = 'replace-me';