Skip to main content

widget_types

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

Overview

Namewidget_types
TypeResource
Idazure_extras.customer_insights.widget_types

Fields

NameDatatypeDescription
idtextResource ID.
nametextResource name.
descriptiontextfield from the properties object
changedtextfield from the properties object
createdtextfield from the properties object
definitiontextfield from the properties object
display_nametextfield from the properties object
hubNametextfield from the properties object
image_urltextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
tenant_idtextfield from the properties object
typetextResource type.
widgetTypeNametextfield from the properties object
widget_type_nametextfield from the properties object
widget_versiontextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECThubName, resourceGroupName, subscriptionId, widgetTypeNameGets a widget type in the specified hub.
list_by_hubSELECThubName, resourceGroupName, subscriptionIdGets all available widget types in the specified hub.

SELECT examples

Gets all available widget types in the specified hub.

SELECT
id,
name,
description,
changed,
created,
definition,
display_name,
hubName,
image_url,
resourceGroupName,
subscriptionId,
tenant_id,
type,
widgetTypeName,
widget_type_name,
widget_version
FROM azure_extras.customer_insights.vw_widget_types
WHERE hubName = '{{ hubName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';