vw_endpoints
Creates, updates, deletes, gets or lists a vw_endpoints
resource.
Overview
Name | vw_endpoints |
Type | View |
Id | azure.ml_services.vw_endpoints |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.associatedResourceId') as "associated_resource_id",
json_extract_path_text(properties, '$.deployments') as "deployments",
json_extract_path_text(properties, '$.endpointType') as "endpoint_type",
json_extract_path_text(properties, '$.endpointUri') as "endpoint_uri",
json_extract_path_text(properties, '$.failureReason') as "failure_reason",
json_extract_path_text(properties, '$.location') as "location",
json_extract_path_text(properties, '$.name') as "name",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(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';