widget_types
Creates, updates, deletes, gets or lists a widget_types
resource.
Overview
Name | widget_types |
Type | Resource |
Id | azure_extras.customer_insights.widget_types |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_hub
OK. Successfully get the widget type.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
properties | object | Definition of WidgetType. |
type | string | Resource type. |
OK. Successfully get all the widget types in the hub.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
properties | object | Definition of WidgetType. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , hubName , widgetTypeName , subscriptionId | Gets a widget type in the specified hub. | |
list_by_hub | select | resourceGroupName , hubName , subscriptionId | Gets 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.
Name | Datatype | Description |
---|---|---|
hubName | string | The name of the hub. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
widgetTypeName | string | The name of the widget type. |
SELECT
examples
- get
- list_by_hub
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
;
Gets all available widget types 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 subscriptionId = '{{ subscriptionId }}' -- required
;