Skip to main content

action_groups_test_notifications_at_action_group_resource_levels

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

Overview

Nameaction_groups_test_notifications_at_action_group_resource_levels
TypeResource
Idazure.monitor.action_groups_test_notifications_at_action_group_resource_levels

Fields

The following fields are returned by SELECT queries:

The notification details

NameDatatypeDescription
actionDetailsarrayThe list of action detail
completedTimestringThe completed time
contextobjectThe context info
createdTimestringThe created time
statestringThe overall state

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, actionGroupName, notificationIdGet the test notifications by the notification id

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
actionGroupNamestringThe name of the action group.
notificationIdstringThe notification id
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get the test notifications by the notification id

SELECT
actionDetails,
completedTime,
context,
createdTime,
state
FROM azure.monitor.action_groups_test_notifications_at_action_group_resource_levels
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND actionGroupName = '{{ actionGroupName }}' -- required
AND notificationId = '{{ notificationId }}' -- required
;