vw_archives
Creates, updates, deletes, gets or lists a vw_archives
resource.
Overview
Name | vw_archives |
Type | View |
Id | azure.container_registry.vw_archives |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.packageSource') as "package_source",
JSON_EXTRACT(properties, '$.publishedVersion') as "published_version",
JSON_EXTRACT(properties, '$.repositoryEndpointPrefix') as "repository_endpoint_prefix",
JSON_EXTRACT(properties, '$.repositoryEndpoint') as "repository_endpoint",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
registryName,
packageType,
archiveName
FROM azure.container_registry.archives
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me' AND packageType = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.packageSource') as "package_source",
json_extract_path_text(properties, '$.publishedVersion') as "published_version",
json_extract_path_text(properties, '$.repositoryEndpointPrefix') as "repository_endpoint_prefix",
json_extract_path_text(properties, '$.repositoryEndpoint') as "repository_endpoint",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
registryName,
packageType,
archiveName
FROM azure.container_registry.archives
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND registryName = 'replace-me' AND packageType = 'replace-me';