vw_tags
Creates, updates, deletes, gets or lists a vw_tags
resource.
Overview
Name | vw_tags |
Type | View |
Id | azure.consumption.vw_tags |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.tags') as "tags",
JSON_EXTRACT(properties, '$.nextLink') as "next_link",
JSON_EXTRACT(properties, '$.previousLink') as "previous_link",
scope
FROM azure.consumption.tags
WHERE scope = 'replace-me';
SELECT
json_extract_path_text(properties, '$.tags') as "tags",
json_extract_path_text(properties, '$.nextLink') as "next_link",
json_extract_path_text(properties, '$.previousLink') as "previous_link",
scope
FROM azure.consumption.tags
WHERE scope = 'replace-me';