vw_widget_types
Creates, updates, deletes, gets or lists a vw_widget_types
resource.
Overview
Name | vw_widget_types |
Type | View |
Id | azure_extras.customer_insights.vw_widget_types |
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,
JSON_EXTRACT(properties, '$.widgetTypeName') as "widget_type_name",
JSON_EXTRACT(properties, '$.definition') as "definition",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.imageUrl') as "image_url",
JSON_EXTRACT(properties, '$.tenantId') as "tenant_id",
JSON_EXTRACT(properties, '$.widgetVersion') as "widget_version",
JSON_EXTRACT(properties, '$.changed') as "changed",
JSON_EXTRACT(properties, '$.created') as "created",
subscriptionId,
resourceGroupName,
hubName,
widgetTypeName
FROM azure_extras.customer_insights.widget_types
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hubName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.widgetTypeName') as "widget_type_name",
json_extract_path_text(properties, '$.definition') as "definition",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.imageUrl') as "image_url",
json_extract_path_text(properties, '$.tenantId') as "tenant_id",
json_extract_path_text(properties, '$.widgetVersion') as "widget_version",
json_extract_path_text(properties, '$.changed') as "changed",
json_extract_path_text(properties, '$.created') as "created",
subscriptionId,
resourceGroupName,
hubName,
widgetTypeName
FROM azure_extras.customer_insights.widget_types
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND hubName = 'replace-me';