vw_integration_service_environment_managed_apis
Creates, updates, deletes, gets or lists a vw_integration_service_environment_managed_apis
resource.
Overview
Name | vw_integration_service_environment_managed_apis |
Type | View |
Id | azure.logic_apps.vw_integration_service_environment_managed_apis |
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, '$.deploymentParameters') as "deployment_parameters",
JSON_EXTRACT(properties, '$.name') as "name",
JSON_EXTRACT(properties, '$.connectionParameters') as "connection_parameters",
JSON_EXTRACT(properties, '$.metadata') as "metadata",
JSON_EXTRACT(properties, '$.runtimeUrls') as "runtime_urls",
JSON_EXTRACT(properties, '$.generalInformation') as "general_information",
JSON_EXTRACT(properties, '$.capabilities') as "capabilities",
JSON_EXTRACT(properties, '$.backendService') as "backend_service",
JSON_EXTRACT(properties, '$.policies') as "policies",
JSON_EXTRACT(properties, '$.apiDefinitionUrl') as "api_definition_url",
JSON_EXTRACT(properties, '$.apiDefinitions') as "api_definitions",
JSON_EXTRACT(properties, '$.integrationServiceEnvironment') as "integration_service_environment",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.category') as "category",
subscriptionId,
resourceGroup,
integrationServiceEnvironmentName,
apiName
FROM azure.logic_apps.integration_service_environment_managed_apis
WHERE subscriptionId = 'replace-me' AND resourceGroup = 'replace-me' AND integrationServiceEnvironmentName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.deploymentParameters') as "deployment_parameters",
json_extract_path_text(properties, '$.name') as "name",
json_extract_path_text(properties, '$.connectionParameters') as "connection_parameters",
json_extract_path_text(properties, '$.metadata') as "metadata",
json_extract_path_text(properties, '$.runtimeUrls') as "runtime_urls",
json_extract_path_text(properties, '$.generalInformation') as "general_information",
json_extract_path_text(properties, '$.capabilities') as "capabilities",
json_extract_path_text(properties, '$.backendService') as "backend_service",
json_extract_path_text(properties, '$.policies') as "policies",
json_extract_path_text(properties, '$.apiDefinitionUrl') as "api_definition_url",
json_extract_path_text(properties, '$.apiDefinitions') as "api_definitions",
json_extract_path_text(properties, '$.integrationServiceEnvironment') as "integration_service_environment",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.category') as "category",
subscriptionId,
resourceGroup,
integrationServiceEnvironmentName,
apiName
FROM azure.logic_apps.integration_service_environment_managed_apis
WHERE subscriptionId = 'replace-me' AND resourceGroup = 'replace-me' AND integrationServiceEnvironmentName = 'replace-me';