Skip to main content

iot_security_solution_analytics

Creates, updates, deletes, gets or lists an iot_security_solution_analytics resource.

Overview

Nameiot_security_solution_analytics
TypeResource
Idazure.security.iot_security_solution_analytics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
devicesMetricsarrayList of device metrics by the aggregation date.
metricsobjectSecurity analytics of your IoT Security solution.
mostPrevalentDeviceAlertsarrayList of the 3 most prevalent device alerts.
mostPrevalentDeviceRecommendationsarrayList of the 3 most prevalent device recommendations.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
topAlertedDevicesarrayList of the 3 devices with the most alerts.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
unhealthyDeviceCountintegerNumber of unhealthy devices within your IoT Security solution.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, solution_name, subscription_idUse this method to get IoT Security Analytics metrics.
list_rawexecresource_group_name, solution_name, subscription_idUse this method to get IoT security Analytics metrics in an array.

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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
solution_namestringThe name of the IoT Security solution. Required.
subscription_idstring

SELECT examples

Use this method to get IoT Security Analytics metrics.

SELECT
id,
name,
devicesMetrics,
metrics,
mostPrevalentDeviceAlerts,
mostPrevalentDeviceRecommendations,
systemData,
topAlertedDevices,
type,
unhealthyDeviceCount
FROM azure.security.iot_security_solution_analytics
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND solution_name = '{{ solution_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

Lifecycle Methods

Use this method to get IoT security Analytics metrics in an array.

EXEC azure.security.iot_security_solution_analytics.list_raw 
@resource_group_name='{{ resource_group_name }}' --required,
@solution_name='{{ solution_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;