vw_serverless_endpoints
Creates, updates, deletes, gets or lists a vw_serverless_endpoints
resource.
Overview
Name | vw_serverless_endpoints |
Type | View |
Id | azure.ml_services.vw_serverless_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, '$.contentSafety') as "content_safety",
JSON_EXTRACT(properties, '$.endpointState') as "endpoint_state",
JSON_EXTRACT(properties, '$.inferenceEndpoint') as "inference_endpoint",
JSON_EXTRACT(properties, '$.marketplaceSubscriptionId') as "marketplace_subscription_id",
JSON_EXTRACT(properties, '$.modelSettings') as "model_settings",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
workspaceName,
name
FROM azure.ml_services.serverless_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, '$.contentSafety') as "content_safety",
json_extract_path_text(properties, '$.endpointState') as "endpoint_state",
json_extract_path_text(properties, '$.inferenceEndpoint') as "inference_endpoint",
json_extract_path_text(properties, '$.marketplaceSubscriptionId') as "marketplace_subscription_id",
json_extract_path_text(properties, '$.modelSettings') as "model_settings",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
workspaceName,
name
FROM azure.ml_services.serverless_endpoints
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';