Skip to main content

vw_endpoints

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

Overview

Namevw_endpoints
TypeView
Idazure.ml_services.vw_endpoints

Fields

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

SQL Definition

SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.associatedResourceId') as "associated_resource_id",
JSON_EXTRACT(properties, '$.deployments') as "deployments",
JSON_EXTRACT(properties, '$.endpointType') as "endpoint_type",
JSON_EXTRACT(properties, '$.endpointUri') as "endpoint_uri",
JSON_EXTRACT(properties, '$.failureReason') as "failure_reason",
JSON_EXTRACT(properties, '$.location') as "location",
JSON_EXTRACT(properties, '$.name') as "name",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.shouldCreateAiServicesEndpoint') as "should_create_ai_services_endpoint",
subscriptionId,
resourceGroupName,
workspaceName,
endpointName
FROM azure.ml_services.endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';