smart_groups_histories
Creates, updates, deletes, gets or lists a smart_groups_histories
resource.
Overview
Name | smart_groups_histories |
Type | Resource |
Id | azure.alerts_management.smart_groups_histories |
Fields
- vw_smart_groups_histories
- smart_groups_histories
Name | Datatype | Description |
---|---|---|
id | text | Azure resource Id |
name | text | Azure resource name |
modifications | text | field from the properties object |
next_link | text | field from the properties object |
smartGroupId | text | field from the properties object |
smart_group_id | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Azure resource type |
Name | Datatype | Description |
---|---|---|
id | string | Azure resource Id |
name | string | Azure resource name |
properties | object | Properties of the smartGroup modification item. |
type | string | Azure resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | smartGroupId, subscriptionId | Get 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) .
- vw_smart_groups_histories
- smart_groups_histories
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.alerts_management.smart_groups_histories
WHERE smartGroupId = '{{ smartGroupId }}'
AND subscriptionId = '{{ subscriptionId }}';