Skip to main content

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

Nametest_notifications_at_tenant_action_group_resource_levels
TypeResource
Idazure.monitor.test_notifications_at_tenant_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
getselectmanagementGroupId, actionGroupName, x-ms-client-tenant-id, 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.
managementGroupIdstringThe management group id.
notificationIdstringThe notification id
x-ms-client-tenant-idstringThe tenant ID of the client making the request.

SELECT examples

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
;