Skip to main content

catalogs_device_insights

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

Overview

Namecatalogs_device_insights
TypeResource
Idazure.sphere.catalogs_device_insights

Fields

NameDatatypeDescription
descriptionstringEvent description
deviceIdstringDevice ID
endTimestampUtcstringEvent end timestamp
eventCategorystringEvent category
eventClassstringEvent class
eventCountintegerEvent count
eventTypestringEvent type
startTimestampUtcstringEvent start timestamp

Methods

NameAccessible byRequired ParamsDescription
listSELECTcatalogName, resourceGroupName, subscriptionIdLists 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 }}';