Skip to main content

iot_security_solutions_analytics_aggregated_alerts

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

Overview

Nameiot_security_solutions_analytics_aggregated_alerts
TypeResource
Idazure.security.iot_security_solutions_analytics_aggregated_alerts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectIoT Security solution aggregated alert details.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectResource tags
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, solutionName, aggregatedAlertNameapi-versionUse this method to get a single the aggregated alert of yours IoT Security solution. This aggregation is performed by alert name.
listselectsubscriptionId, resourceGroupName, solutionNameapi-version, $topUse this method to get the aggregated alert list of yours IoT Security solution.
dismissexecsubscriptionId, resourceGroupName, solutionName, aggregatedAlertNameapi-versionUse this method to dismiss an aggregated IoT Security Solution Alert.

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
aggregatedAlertNamestringIdentifier of the aggregated alert.
resourceGroupNamestringThe name of the resource group within the user's subscription. The name is case insensitive.
solutionNamestringThe name of the IoT Security solution.
subscriptionIdstringAzure subscription ID
$topinteger (int32)Number of results to retrieve.
api-versionstringAPI version for the operation

SELECT examples

Use this method to get a single the aggregated alert of yours IoT Security solution. This aggregation is performed by alert name.

SELECT
id,
name,
properties,
systemData,
tags,
type
FROM azure.security.iot_security_solutions_analytics_aggregated_alerts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND solutionName = '{{ solutionName }}' -- required
AND aggregatedAlertName = '{{ aggregatedAlertName }}' -- required
AND api-version = '{{ api-version }}'
;

Lifecycle Methods

Use this method to dismiss an aggregated IoT Security Solution Alert.

EXEC azure.security.iot_security_solutions_analytics_aggregated_alerts.dismiss 
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@solutionName='{{ solutionName }}' --required,
@aggregatedAlertName='{{ aggregatedAlertName }}' --required,
@api-version='{{ api-version }}'
;