vw_gateway_hostname_configurations
Creates, updates, deletes, gets or lists a vw_gateway_hostname_configurations
resource.
Overview
Name | vw_gateway_hostname_configurations |
Type | View |
Id | azure.api_management.vw_gateway_hostname_configurations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.hostname') as "hostname",
JSON_EXTRACT(properties, '$.certificateId') as "certificate_id",
JSON_EXTRACT(properties, '$.negotiateClientCertificate') as "negotiate_client_certificate",
JSON_EXTRACT(properties, '$.tls10Enabled') as "tls10_enabled",
JSON_EXTRACT(properties, '$.tls11Enabled') as "tls11_enabled",
JSON_EXTRACT(properties, '$.http2Enabled') as "http2_enabled",
subscriptionId,
resourceGroupName,
serviceName,
gatewayId,
hcId
FROM azure.api_management.gateway_hostname_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND gatewayId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.hostname') as "hostname",
json_extract_path_text(properties, '$.certificateId') as "certificate_id",
json_extract_path_text(properties, '$.negotiateClientCertificate') as "negotiate_client_certificate",
json_extract_path_text(properties, '$.tls10Enabled') as "tls10_enabled",
json_extract_path_text(properties, '$.tls11Enabled') as "tls11_enabled",
json_extract_path_text(properties, '$.http2Enabled') as "http2_enabled",
subscriptionId,
resourceGroupName,
serviceName,
gatewayId,
hcId
FROM azure.api_management.gateway_hostname_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND gatewayId = 'replace-me';