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

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

Methods

NameAccessible byRequired ParamsDescription
createINSERTactionGroupName, managementGroupId, tenantId, data__alertTypeSend test notifications to a set of provided receivers

INSERT example

Use the following StackQL query and manifest file to create a new notifications_at_tenant_action_group_resource_levels resource.

/*+ create */
INSERT INTO azure.monitor.notifications_at_tenant_action_group_resource_levels (
actionGroupName,
managementGroupId,
tenantId,
data__alertType,
alertType,
emailReceivers,
smsReceivers,
webhookReceivers,
azureAppPushReceivers,
voiceReceivers
)
SELECT
'{{ actionGroupName }}',
'{{ managementGroupId }}',
'{{ tenantId }}',
'{{ data__alertType }}',
'{{ alertType }}',
'{{ emailReceivers }}',
'{{ smsReceivers }}',
'{{ webhookReceivers }}',
'{{ azureAppPushReceivers }}',
'{{ voiceReceivers }}'
;