vw_gateways
Creates, updates, deletes, gets or lists a vw_gateways
resource.
Overview
Name | vw_gateways |
Type | View |
Id | azure.spring_apps.vw_gateways |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
sku as sku,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.public') as "public",
JSON_EXTRACT(properties, '$.url') as "url",
JSON_EXTRACT(properties, '$.httpsOnly') as "https_only",
JSON_EXTRACT(properties, '$.ssoProperties') as "sso_properties",
JSON_EXTRACT(properties, '$.apiMetadataProperties') as "api_metadata_properties",
JSON_EXTRACT(properties, '$.corsProperties') as "cors_properties",
JSON_EXTRACT(properties, '$.clientAuth') as "client_auth",
JSON_EXTRACT(properties, '$.apmTypes') as "apm_types",
JSON_EXTRACT(properties, '$.apms') as "apms",
JSON_EXTRACT(properties, '$.environmentVariables') as "environment_variables",
JSON_EXTRACT(properties, '$.resourceRequests') as "resource_requests",
JSON_EXTRACT(properties, '$.addonConfigs') as "addon_configs",
JSON_EXTRACT(properties, '$.instances') as "instances",
JSON_EXTRACT(properties, '$.operatorProperties') as "operator_properties",
JSON_EXTRACT(properties, '$.responseCacheProperties') as "response_cache_properties",
subscriptionId,
resourceGroupName,
serviceName,
gatewayName
FROM azure.spring_apps.gateways
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';
SELECT
sku as sku,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.public') as "public",
json_extract_path_text(properties, '$.url') as "url",
json_extract_path_text(properties, '$.httpsOnly') as "https_only",
json_extract_path_text(properties, '$.ssoProperties') as "sso_properties",
json_extract_path_text(properties, '$.apiMetadataProperties') as "api_metadata_properties",
json_extract_path_text(properties, '$.corsProperties') as "cors_properties",
json_extract_path_text(properties, '$.clientAuth') as "client_auth",
json_extract_path_text(properties, '$.apmTypes') as "apm_types",
json_extract_path_text(properties, '$.apms') as "apms",
json_extract_path_text(properties, '$.environmentVariables') as "environment_variables",
json_extract_path_text(properties, '$.resourceRequests') as "resource_requests",
json_extract_path_text(properties, '$.addonConfigs') as "addon_configs",
json_extract_path_text(properties, '$.instances') as "instances",
json_extract_path_text(properties, '$.operatorProperties') as "operator_properties",
json_extract_path_text(properties, '$.responseCacheProperties') as "response_cache_properties",
subscriptionId,
resourceGroupName,
serviceName,
gatewayName
FROM azure.spring_apps.gateways
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';