vw_afd_endpoints
Creates, updates, deletes, gets or lists a vw_afd_endpoints
resource.
Overview
Name | vw_afd_endpoints |
Type | View |
Id | azure.cdn.vw_afd_endpoints |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.profileName') as "profile_name",
JSON_EXTRACT(properties, '$.enabledState') as "enabled_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.deploymentStatus') as "deployment_status",
JSON_EXTRACT(properties, '$.hostName') as "host_name",
JSON_EXTRACT(properties, '$.autoGeneratedDomainNameLabelScope') as "auto_generated_domain_name_label_scope",
subscriptionId,
resourceGroupName,
profileName,
endpointName
FROM azure.cdn.afd_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND profileName = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.profileName') as "profile_name",
json_extract_path_text(properties, '$.enabledState') as "enabled_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.deploymentStatus') as "deployment_status",
json_extract_path_text(properties, '$.hostName') as "host_name",
json_extract_path_text(properties, '$.autoGeneratedDomainNameLabelScope') as "auto_generated_domain_name_label_scope",
subscriptionId,
resourceGroupName,
profileName,
endpointName
FROM azure.cdn.afd_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND profileName = 'replace-me';