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
Name | action_groups_test_notifications_at_action_group_resource_levels |
Type | Resource |
Id | azure.monitor.action_groups_test_notifications_at_action_group_resource_levels |
Fields
The following fields are returned by SELECT
queries:
- get
The notification details
Name | Datatype | Description |
---|---|---|
actionDetails | array | The list of action detail |
completedTime | string | The completed time |
context | object | The context info |
createdTime | string | The created time |
state | string | The overall state |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , actionGroupName , notificationId | Get 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.
Name | Datatype | Description |
---|---|---|
actionGroupName | string | The name of the action group. |
notificationId | string | The notification id |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
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
;