Skip to main content

vw_online_deployments

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

Overview

Namevw_online_deployments
TypeView
Idazure.ml_services.vw_online_deployments

Fields

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

SQL Definition

SELECT
location as location,
tags as tags,
identity as identity,
kind as kind,
sku as sku,
JSON_EXTRACT(properties, '$.codeConfiguration') as "code_configuration",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.environmentId') as "environment_id",
JSON_EXTRACT(properties, '$.environmentVariables') as "environment_variables",
JSON_EXTRACT(properties, '$.properties') as "properties",
JSON_EXTRACT(properties, '$.appInsightsEnabled') as "app_insights_enabled",
JSON_EXTRACT(properties, '$.dataCollector') as "data_collector",
JSON_EXTRACT(properties, '$.egressPublicNetworkAccess') as "egress_public_network_access",
JSON_EXTRACT(properties, '$.endpointComputeType') as "endpoint_compute_type",
JSON_EXTRACT(properties, '$.instanceType') as "instance_type",
JSON_EXTRACT(properties, '$.livenessProbe') as "liveness_probe",
JSON_EXTRACT(properties, '$.model') as "model",
JSON_EXTRACT(properties, '$.modelMountPath') as "model_mount_path",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.readinessProbe') as "readiness_probe",
JSON_EXTRACT(properties, '$.requestSettings') as "request_settings",
JSON_EXTRACT(properties, '$.scaleSettings') as "scale_settings",
subscriptionId,
resourceGroupName,
workspaceName,
endpointName,
deploymentName
FROM azure.ml_services.online_deployments
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND endpointName = 'replace-me';