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
- vw_widget_types
- widget_types
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | Resource name. |
description | text | field from the properties object |
changed | text | field from the properties object |
created | text | field from the properties object |
definition | text | field from the properties object |
display_name | text | field from the properties object |
hubName | text | field from the properties object |
image_url | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tenant_id | text | field from the properties object |
type | text | Resource type. |
widgetTypeName | text | field from the properties object |
widget_type_name | text | field from the properties object |
widget_version | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
properties | object | Definition of WidgetType. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | hubName, resourceGroupName, subscriptionId, widgetTypeName | Gets a widget type in the specified hub. |
list_by_hub | SELECT | hubName, resourceGroupName, subscriptionId | Gets all available widget types in the specified hub. |
SELECT
examples
Gets all available widget types in the specified hub.
- vw_widget_types
- widget_types
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 }}';
SELECT
id,
name,
properties,
type
FROM azure_extras.customer_insights.widget_types
WHERE hubName = '{{ hubName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';