vw_workbook_templates
Creates, updates, deletes, gets or lists a vw_workbook_templates
resource.
Overview
Name | vw_workbook_templates |
Type | View |
Id | azure.application_insights.vw_workbook_templates |
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, '$.priority') as "priority",
JSON_EXTRACT(properties, '$.author') as "author",
JSON_EXTRACT(properties, '$.templateData') as "template_data",
JSON_EXTRACT(properties, '$.galleries') as "galleries",
JSON_EXTRACT(properties, '$.localized') as "localized",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.application_insights.workbook_templates
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.priority') as "priority",
json_extract_path_text(properties, '$.author') as "author",
json_extract_path_text(properties, '$.templateData') as "template_data",
json_extract_path_text(properties, '$.galleries') as "galleries",
json_extract_path_text(properties, '$.localized') as "localized",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.application_insights.workbook_templates
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';