vw_integration_service_environments
Creates, updates, deletes, gets or lists a vw_integration_service_environments
resource.
Overview
Name | vw_integration_service_environments |
Type | View |
Id | azure.logic_apps.vw_integration_service_environments |
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,
sku as sku,
identity as identity,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.integrationServiceEnvironmentId') as "integration_service_environment_id",
JSON_EXTRACT(properties, '$.endpointsConfiguration') as "endpoints_configuration",
JSON_EXTRACT(properties, '$.networkConfiguration') as "network_configuration",
JSON_EXTRACT(properties, '$.encryptionConfiguration') as "encryption_configuration",
subscriptionId,
resourceGroup,
integrationServiceEnvironmentName
FROM azure.logic_apps.integration_service_environments
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
sku as sku,
identity as identity,
type as type,
tags as tags,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.integrationServiceEnvironmentId') as "integration_service_environment_id",
json_extract_path_text(properties, '$.endpointsConfiguration') as "endpoints_configuration",
json_extract_path_text(properties, '$.networkConfiguration') as "network_configuration",
json_extract_path_text(properties, '$.encryptionConfiguration') as "encryption_configuration",
subscriptionId,
resourceGroup,
integrationServiceEnvironmentName
FROM azure.logic_apps.integration_service_environments
WHERE subscriptionId = 'replace-me';