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

The following fields are returned by SELECT queries:

OK. Successfully get the widget type.

NameDatatypeDescription
idstringResource ID.
namestringResource name.
propertiesobjectDefinition of WidgetType.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, hubName, widgetTypeName, subscriptionIdGets a widget type in the specified hub.
list_by_hubselectresourceGroupName, hubName, subscriptionIdGets all available widget types in the specified hub.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
hubNamestringThe name of the hub.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
widgetTypeNamestringThe name of the widget type.

SELECT examples

Gets a widget type in the specified hub.

SELECT
id,
name,
properties,
type
FROM azure_extras.customer_insights.widget_types
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND hubName = '{{ hubName }}' -- required
AND widgetTypeName = '{{ widgetTypeName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;