vw_custom_domains
Creates, updates, deletes, gets or lists a vw_custom_domains
resource.
Overview
Name | vw_custom_domains |
Type | View |
Id | azure.spring_apps.vw_custom_domains |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.thumbprint') as "thumbprint",
JSON_EXTRACT(properties, '$.appName') as "app_name",
JSON_EXTRACT(properties, '$.certName') as "cert_name",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
serviceName,
appName,
domainName
FROM azure.spring_apps.custom_domains
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND appName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.thumbprint') as "thumbprint",
json_extract_path_text(properties, '$.appName') as "app_name",
json_extract_path_text(properties, '$.certName') as "cert_name",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
serviceName,
appName,
domainName
FROM azure.spring_apps.custom_domains
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND appName = 'replace-me';