Skip to main content

vw_endpoints

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

Overview

Namevw_endpoints
TypeView
Idazure.traffic_manager.vw_endpoints

Fields

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

SQL Definition

SELECT
JSON_EXTRACT(properties, '$.targetResourceId') as "target_resource_id",
JSON_EXTRACT(properties, '$.target') as "target",
JSON_EXTRACT(properties, '$.endpointStatus') as "endpoint_status",
JSON_EXTRACT(properties, '$.weight') as "weight",
JSON_EXTRACT(properties, '$.priority') as "priority",
JSON_EXTRACT(properties, '$.endpointLocation') as "endpoint_location",
JSON_EXTRACT(properties, '$.endpointMonitorStatus') as "endpoint_monitor_status",
JSON_EXTRACT(properties, '$.minChildEndpoints') as "min_child_endpoints",
JSON_EXTRACT(properties, '$.minChildEndpointsIPv4') as "min_child_endpoints_ipv4",
JSON_EXTRACT(properties, '$.minChildEndpointsIPv6') as "min_child_endpoints_ipv6",
JSON_EXTRACT(properties, '$.geoMapping') as "geo_mapping",
JSON_EXTRACT(properties, '$.subnets') as "subnets",
JSON_EXTRACT(properties, '$.customHeaders') as "custom_headers",
JSON_EXTRACT(properties, '$.alwaysServe') as "always_serve",
subscriptionId,
resourceGroupName,
profileName,
endpointType,
endpointName
FROM azure.traffic_manager.endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND profileName = 'replace-me' AND endpointType = 'replace-me' AND endpointName = 'replace-me';