vw_api_gateway_config_connections
Creates, updates, deletes, gets or lists a vw_api_gateway_config_connections
resource.
Overview
Name | vw_api_gateway_config_connections |
Type | View |
Id | azure.api_management.vw_api_gateway_config_connections |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
etag as etag,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.sourceId') as "source_id",
JSON_EXTRACT(properties, '$.defaultHostname') as "default_hostname",
JSON_EXTRACT(properties, '$.hostnames') as "hostnames",
subscriptionId,
resourceGroupName,
gatewayName,
configConnectionName
FROM azure.api_management.api_gateway_config_connections
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND gatewayName = 'replace-me';
SELECT
etag as etag,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.sourceId') as "source_id",
json_extract_path_text(properties, '$.defaultHostname') as "default_hostname",
json_extract_path_text(properties, '$.hostnames') as "hostnames",
subscriptionId,
resourceGroupName,
gatewayName,
configConnectionName
FROM azure.api_management.api_gateway_config_connections
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND gatewayName = 'replace-me';