vw_origin_groups
Creates, updates, deletes, gets or lists a vw_origin_groups
resource.
Overview
Name | vw_origin_groups |
Type | View |
Id | azure.cdn.vw_origin_groups |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.healthProbeSettings') as "health_probe_settings",
JSON_EXTRACT(properties, '$.origins') as "origins",
JSON_EXTRACT(properties, '$.trafficRestorationTimeToHealedOrNewEndpointsInMinutes') as "traffic_restoration_time_to_healed_or_new_endpoints_in_minutes",
JSON_EXTRACT(properties, '$.responseBasedOriginErrorDetectionSettings') as "response_based_origin_error_detection_settings",
JSON_EXTRACT(properties, '$.resourceState') as "resource_state",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
profileName,
endpointName,
originGroupName
FROM azure.cdn.origin_groups
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND profileName = 'replace-me' AND endpointName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.healthProbeSettings') as "health_probe_settings",
json_extract_path_text(properties, '$.origins') as "origins",
json_extract_path_text(properties, '$.trafficRestorationTimeToHealedOrNewEndpointsInMinutes') as "traffic_restoration_time_to_healed_or_new_endpoints_in_minutes",
json_extract_path_text(properties, '$.responseBasedOriginErrorDetectionSettings') as "response_based_origin_error_detection_settings",
json_extract_path_text(properties, '$.resourceState') as "resource_state",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
profileName,
endpointName,
originGroupName
FROM azure.cdn.origin_groups
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND profileName = 'replace-me' AND endpointName = 'replace-me';