vw_datastores
Creates, updates, deletes, gets or lists a vw_datastores
resource.
Overview
Name | vw_datastores |
Type | View |
Id | azure.ml_services.vw_datastores |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.properties') as "properties",
json_extract_path_text(properties, '$.tags') as "tags",
json_extract_path_text(properties, '$.credentials') as "credentials",
json_extract_path_text(properties, '$.datastoreType') as "datastore_type",
json_extract_path_text(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';