vw_gateway_route_configs
Creates, updates, deletes, gets or lists a vw_gateway_route_configs
resource.
Overview
Name | vw_gateway_route_configs |
Type | View |
Id | azure.spring_apps.vw_gateway_route_configs |
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, '$.appResourceId') as "app_resource_id",
JSON_EXTRACT(properties, '$.openApi') as "open_api",
JSON_EXTRACT(properties, '$.protocol') as "protocol",
JSON_EXTRACT(properties, '$.routes') as "routes",
JSON_EXTRACT(properties, '$.ssoEnabled') as "sso_enabled",
JSON_EXTRACT(properties, '$.predicates') as "predicates",
JSON_EXTRACT(properties, '$.filters') as "filters",
subscriptionId,
resourceGroupName,
serviceName,
gatewayName,
routeConfigName
FROM azure.spring_apps.gateway_route_configs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND gatewayName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.appResourceId') as "app_resource_id",
json_extract_path_text(properties, '$.openApi') as "open_api",
json_extract_path_text(properties, '$.protocol') as "protocol",
json_extract_path_text(properties, '$.routes') as "routes",
json_extract_path_text(properties, '$.ssoEnabled') as "sso_enabled",
json_extract_path_text(properties, '$.predicates') as "predicates",
json_extract_path_text(properties, '$.filters') as "filters",
subscriptionId,
resourceGroupName,
serviceName,
gatewayName,
routeConfigName
FROM azure.spring_apps.gateway_route_configs
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND gatewayName = 'replace-me';