Skip to main content

action_groups_notifications_at_action_group_resource_levels

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

Overview

Nameaction_groups_notifications_at_action_group_resource_levels
TypeResource
Idazure.monitor.action_groups_notifications_at_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, resourceGroupName, subscriptionId, data__alertTypeSend test notifications to a set of provided receivers

INSERT example

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

/*+ create */
INSERT INTO azure.monitor.action_groups_notifications_at_action_group_resource_levels (
actionGroupName,
resourceGroupName,
subscriptionId,
data__alertType,
alertType,
emailReceivers,
smsReceivers,
webhookReceivers,
itsmReceivers,
azureAppPushReceivers,
automationRunbookReceivers,
voiceReceivers,
logicAppReceivers,
azureFunctionReceivers,
armRoleReceivers,
eventHubReceivers,
incidentReceivers
)
SELECT
'{{ actionGroupName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__alertType }}',
'{{ alertType }}',
'{{ emailReceivers }}',
'{{ smsReceivers }}',
'{{ webhookReceivers }}',
'{{ itsmReceivers }}',
'{{ azureAppPushReceivers }}',
'{{ automationRunbookReceivers }}',
'{{ voiceReceivers }}',
'{{ logicAppReceivers }}',
'{{ azureFunctionReceivers }}',
'{{ armRoleReceivers }}',
'{{ eventHubReceivers }}',
'{{ incidentReceivers }}'
;