Skip to main content

vw_afd_origins

Creates, updates, deletes, gets or lists a vw_afd_origins resource.

Overview

Namevw_afd_origins
TypeView
Idazure.cdn.vw_afd_origins

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
JSON_EXTRACT(properties, '$.originGroupName') as "origin_group_name",
JSON_EXTRACT(properties, '$.azureOrigin') as "azure_origin",
JSON_EXTRACT(properties, '$.hostName') as "host_name",
JSON_EXTRACT(properties, '$.httpPort') as "http_port",
JSON_EXTRACT(properties, '$.httpsPort') as "https_port",
JSON_EXTRACT(properties, '$.originHostHeader') as "origin_host_header",
JSON_EXTRACT(properties, '$.priority') as "priority",
JSON_EXTRACT(properties, '$.weight') as "weight",
JSON_EXTRACT(properties, '$.sharedPrivateLinkResource') as "shared_private_link_resource",
JSON_EXTRACT(properties, '$.enabledState') as "enabled_state",
JSON_EXTRACT(properties, '$.enforceCertificateNameCheck') as "enforce_certificate_name_check",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.deploymentStatus') as "deployment_status",
subscriptionId,
resourceGroupName,
profileName,
originGroupName,
originName
FROM azure.cdn.afd_origins
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND profileName = 'replace-me' AND originGroupName = 'replace-me';