Skip to main content

smart_groups_histories

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

Overview

Namesmart_groups_histories
TypeResource
Idazure.alerts_management.smart_groups_histories

Fields

NameDatatypeDescription
idtextAzure resource Id
nametextAzure resource name
modificationstextfield from the properties object
next_linktextfield from the properties object
smartGroupIdtextfield from the properties object
smart_group_idtextfield from the properties object
subscriptionIdtextfield from the properties object
typetextAzure resource type

Methods

NameAccessible byRequired ParamsDescription
getSELECTsmartGroupId, subscriptionIdGet the history a smart group, which captures any Smart Group state changes (New/Acknowledged/Closed) .

SELECT examples

Get the history a smart group, which captures any Smart Group state changes (New/Acknowledged/Closed) .

SELECT
id,
name,
modifications,
next_link,
smartGroupId,
smart_group_id,
subscriptionId,
type
FROM azure.alerts_management.vw_smart_groups_histories
WHERE smartGroupId = '{{ smartGroupId }}'
AND subscriptionId = '{{ subscriptionId }}';