vw_integration_account_batch_configurations
Creates, updates, deletes, gets or lists a vw_integration_account_batch_configurations
resource.
Overview
Name | vw_integration_account_batch_configurations |
Type | View |
Id | azure.logic_apps.vw_integration_account_batch_configurations |
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, '$.batchGroupName') as "batch_group_name",
JSON_EXTRACT(properties, '$.releaseCriteria') as "release_criteria",
JSON_EXTRACT(properties, '$.createdTime') as "created_time",
JSON_EXTRACT(properties, '$.changedTime') as "changed_time",
JSON_EXTRACT(properties, '$.metadata') as "metadata",
subscriptionId,
resourceGroupName,
integrationAccountName,
batchConfigurationName
FROM azure.logic_apps.integration_account_batch_configurations
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, '$.batchGroupName') as "batch_group_name",
json_extract_path_text(properties, '$.releaseCriteria') as "release_criteria",
json_extract_path_text(properties, '$.createdTime') as "created_time",
json_extract_path_text(properties, '$.changedTime') as "changed_time",
json_extract_path_text(properties, '$.metadata') as "metadata",
subscriptionId,
resourceGroupName,
integrationAccountName,
batchConfigurationName
FROM azure.logic_apps.integration_account_batch_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND integrationAccountName = 'replace-me';