Skip to main content

notifications_at_tenant_action_group_resource_levels

Creates, updates, deletes, gets or lists a notifications_at_tenant_action_group_resource_levels resource.

Overview

Namenotifications_at_tenant_action_group_resource_levels
TypeResource
Idazure.monitor.notifications_at_tenant_action_group_resource_levels

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertmanagementGroupId, actionGroupName, x-ms-client-tenant-id, data__alertTypeSend test notifications to a set of provided receivers

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.
x-ms-client-tenant-idstringThe tenant ID of the client making the request.

INSERT examples

Send test notifications to a set of provided receivers

INSERT INTO azure.monitor.notifications_at_tenant_action_group_resource_levels (
data__alertType,
data__emailReceivers,
data__smsReceivers,
data__webhookReceivers,
data__azureAppPushReceivers,
data__voiceReceivers,
managementGroupId,
actionGroupName,
x-ms-client-tenant-id
)
SELECT
'{{ alertType }}' /* required */,
'{{ emailReceivers }}',
'{{ smsReceivers }}',
'{{ webhookReceivers }}',
'{{ azureAppPushReceivers }}',
'{{ voiceReceivers }}',
'{{ managementGroupId }}',
'{{ actionGroupName }}',
'{{ x-ms-client-tenant-id }}'
RETURNING
actionDetails,
completedTime,
context,
createdTime,
state
;