vw_infrastructure_resources
Creates, updates, deletes, gets or lists a vw_infrastructure_resources
resource.
Overview
Name | vw_infrastructure_resources |
Type | View |
Id | azure.integration_environment.vw_infrastructure_resources |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.resourceType') as "resource_type",
JSON_EXTRACT(properties, '$.resourceId') as "resource_id",
subscriptionId,
resourceGroupName,
spaceName,
infrastructureResourceName
FROM azure.integration_environment.infrastructure_resources
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND spaceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.resourceType') as "resource_type",
json_extract_path_text(properties, '$.resourceId') as "resource_id",
subscriptionId,
resourceGroupName,
spaceName,
infrastructureResourceName
FROM azure.integration_environment.infrastructure_resources
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND spaceName = 'replace-me';