test_notifications_at_tenant_action_group_resource_levels
Creates, updates, deletes, gets or lists a test_notifications_at_tenant_action_group_resource_levels resource.
Overview
| Name | test_notifications_at_tenant_action_group_resource_levels |
| Type | Resource |
| Id | azure.monitor.test_notifications_at_tenant_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 | managementGroupId, actionGroupName, x-ms-client-tenant-id, 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. |
managementGroupId | string | The management group id. |
notificationId | string | The notification id |
x-ms-client-tenant-id | string | The tenant ID of the client making the request. |
SELECT examples
- get
Get the test notifications by the notification id
SELECT
actionDetails,
completedTime,
context,
createdTime,
state
FROM azure.monitor.test_notifications_at_tenant_action_group_resource_levels
WHERE managementGroupId = '{{ managementGroupId }}' -- required
AND actionGroupName = '{{ actionGroupName }}' -- required
AND x-ms-client-tenant-id = '{{ x-ms-client-tenant-id }}' -- required
AND notificationId = '{{ notificationId }}' -- required
;