vw_registry_component_containers
Creates, updates, deletes, gets or lists a vw_registry_component_containers
resource.
Overview
Name | vw_registry_component_containers |
Type | View |
Id | azure.ml_services.vw_registry_component_containers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.isArchived') as "is_archived",
JSON_EXTRACT(properties, '$.latestVersion') as "latest_version",
JSON_EXTRACT(properties, '$.nextVersion') as "next_version",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
registryName,
componentName
FROM azure.ml_services.registry_component_containers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.isArchived') as "is_archived",
json_extract_path_text(properties, '$.latestVersion') as "latest_version",
json_extract_path_text(properties, '$.nextVersion') as "next_version",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
registryName,
componentName
FROM azure.ml_services.registry_component_containers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me';