vw_batch_endpoints
Creates, updates, deletes, gets or lists a vw_batch_endpoints
resource.
Overview
Name | vw_batch_endpoints |
Type | View |
Id | azure.ml_services.vw_batch_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, '$.defaults') as "defaults",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
workspaceName,
endpointName
FROM azure.ml_services.batch_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, '$.defaults') as "defaults",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
workspaceName,
endpointName
FROM azure.ml_services.batch_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';