Skip to main content

vw_batch_deployments

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

Overview

Namevw_batch_deployments
TypeView
Idazure.ml_services.vw_batch_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, '$.compute') as "compute",
JSON_EXTRACT(properties, '$.deploymentConfiguration') as "deployment_configuration",
JSON_EXTRACT(properties, '$.errorThreshold') as "error_threshold",
JSON_EXTRACT(properties, '$.loggingLevel') as "logging_level",
JSON_EXTRACT(properties, '$.maxConcurrencyPerInstance') as "max_concurrency_per_instance",
JSON_EXTRACT(properties, '$.miniBatchSize') as "mini_batch_size",
JSON_EXTRACT(properties, '$.model') as "model",
JSON_EXTRACT(properties, '$.outputAction') as "output_action",
JSON_EXTRACT(properties, '$.outputFileName') as "output_file_name",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.resources') as "resources",
JSON_EXTRACT(properties, '$.retrySettings') as "retry_settings",
subscriptionId,
resourceGroupName,
workspaceName,
endpointName,
deploymentName
FROM azure.ml_services.batch_deployments
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND endpointName = 'replace-me';