catalogs_device_insights
Creates, updates, deletes, gets or lists a catalogs_device_insights
resource.
Overview
Name | catalogs_device_insights |
Type | Resource |
Id | azure.sphere.catalogs_device_insights |
Fields
Name | Datatype | Description |
---|---|---|
description | string | Event description |
deviceId | string | Device ID |
endTimestampUtc | string | Event end timestamp |
eventCategory | string | Event category |
eventClass | string | Event class |
eventCount | integer | Event count |
eventType | string | Event type |
startTimestampUtc | string | Event start timestamp |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | catalogName, resourceGroupName, subscriptionId | Lists device insights for catalog. |
SELECT
examples
Lists device insights for catalog.
SELECT
description,
deviceId,
endTimestampUtc,
eventCategory,
eventClass,
eventCount,
eventType,
startTimestampUtc
FROM azure.sphere.catalogs_device_insights
WHERE catalogName = '{{ catalogName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';