Skip to main content

vw_datastores

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

Overview

Namevw_datastores
TypeView
Idazure.ml_services.vw_datastores

Fields

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

SQL Definition

SELECT
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.properties') as "properties",
JSON_EXTRACT(properties, '$.tags') as "tags",
JSON_EXTRACT(properties, '$.credentials') as "credentials",
JSON_EXTRACT(properties, '$.datastoreType') as "datastore_type",
JSON_EXTRACT(properties, '$.isDefault') as "is_default",
subscriptionId,
resourceGroupName,
workspaceName,
name
FROM azure.ml_services.datastores
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';