Skip to main content

vw_artifacts

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

Overview

Namevw_artifacts
TypeView
Idazure.dev_test_labs.vw_artifacts

Fields

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

SQL Definition

SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.title') as "title",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.publisher') as "publisher",
JSON_EXTRACT(properties, '$.filePath') as "file_path",
JSON_EXTRACT(properties, '$.icon') as "icon",
JSON_EXTRACT(properties, '$.targetOsType') as "target_os_type",
JSON_EXTRACT(properties, '$.parameters') as "parameters",
JSON_EXTRACT(properties, '$.createdDate') as "created_date",
subscriptionId,
resourceGroupName,
labName,
artifactSourceName,
name
FROM azure.dev_test_labs.artifacts
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND labName = 'replace-me' AND artifactSourceName = 'replace-me';