vw_online_endpoints
Creates, updates, deletes, gets or lists a vw_online_endpoints
resource.
Overview
Name | vw_online_endpoints |
Type | View |
Id | azure.ml_services.vw_online_endpoints |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
identity as identity,
kind as kind,
sku as sku,
JSON_EXTRACT(properties, '$.authMode') as "auth_mode",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.keys') as "keys",
JSON_EXTRACT(properties, '$.properties') as "properties",
JSON_EXTRACT(properties, '$.scoringUri') as "scoring_uri",
JSON_EXTRACT(properties, '$.swaggerUri') as "swagger_uri",
JSON_EXTRACT(properties, '$.compute') as "compute",
JSON_EXTRACT(properties, '$.mirrorTraffic') as "mirror_traffic",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.publicNetworkAccess') as "public_network_access",
JSON_EXTRACT(properties, '$.traffic') as "traffic",
subscriptionId,
resourceGroupName,
workspaceName,
endpointName
FROM azure.ml_services.online_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
location as location,
tags as tags,
identity as identity,
kind as kind,
sku as sku,
json_extract_path_text(properties, '$.authMode') as "auth_mode",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.keys') as "keys",
json_extract_path_text(properties, '$.properties') as "properties",
json_extract_path_text(properties, '$.scoringUri') as "scoring_uri",
json_extract_path_text(properties, '$.swaggerUri') as "swagger_uri",
json_extract_path_text(properties, '$.compute') as "compute",
json_extract_path_text(properties, '$.mirrorTraffic') as "mirror_traffic",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.publicNetworkAccess') as "public_network_access",
json_extract_path_text(properties, '$.traffic') as "traffic",
subscriptionId,
resourceGroupName,
workspaceName,
endpointName
FROM azure.ml_services.online_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';