vw_featureset_versions
Creates, updates, deletes, gets or lists a vw_featureset_versions
resource.
Overview
Name | vw_featureset_versions |
Type | View |
Id | azure.ml_services.vw_featureset_versions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.isAnonymous') as "is_anonymous",
JSON_EXTRACT(properties, '$.isArchived') as "is_archived",
JSON_EXTRACT(properties, '$.entities') as "entities",
JSON_EXTRACT(properties, '$.materializationSettings') as "materialization_settings",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.specification') as "specification",
JSON_EXTRACT(properties, '$.stage') as "stage",
subscriptionId,
resourceGroupName,
workspaceName,
name,
version
FROM azure.ml_services.featureset_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND name = 'replace-me';
SELECT
json_extract_path_text(properties, '$.isAnonymous') as "is_anonymous",
json_extract_path_text(properties, '$.isArchived') as "is_archived",
json_extract_path_text(properties, '$.entities') as "entities",
json_extract_path_text(properties, '$.materializationSettings') as "materialization_settings",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.specification') as "specification",
json_extract_path_text(properties, '$.stage') as "stage",
subscriptionId,
resourceGroupName,
workspaceName,
name,
version
FROM azure.ml_services.featureset_versions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND name = 'replace-me';