vw_artifacts
Creates, updates, deletes, gets or lists a vw_artifacts
resource.
Overview
Name | vw_artifacts |
Type | View |
Id | azure.dev_test_labs.vw_artifacts |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
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';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.title') as "title",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.publisher') as "publisher",
json_extract_path_text(properties, '$.filePath') as "file_path",
json_extract_path_text(properties, '$.icon') as "icon",
json_extract_path_text(properties, '$.targetOsType') as "target_os_type",
json_extract_path_text(properties, '$.parameters') as "parameters",
json_extract_path_text(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';