Skip to main content

action_groups_notifications_at_action_group_resource_levels

Creates, updates, deletes, gets or lists an 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

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
createinsertsubscriptionId, resourceGroupName, actionGroupName, 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.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

INSERT examples

Send test notifications to a set of provided receivers

INSERT INTO azure.monitor.action_groups_notifications_at_action_group_resource_levels (
data__alertType,
data__emailReceivers,
data__smsReceivers,
data__webhookReceivers,
data__itsmReceivers,
data__azureAppPushReceivers,
data__automationRunbookReceivers,
data__voiceReceivers,
data__logicAppReceivers,
data__azureFunctionReceivers,
data__armRoleReceivers,
data__eventHubReceivers,
data__incidentReceivers,
subscriptionId,
resourceGroupName,
actionGroupName
)
SELECT
'{{ alertType }}' /* required */,
'{{ emailReceivers }}',
'{{ smsReceivers }}',
'{{ webhookReceivers }}',
'{{ itsmReceivers }}',
'{{ azureAppPushReceivers }}',
'{{ automationRunbookReceivers }}',
'{{ voiceReceivers }}',
'{{ logicAppReceivers }}',
'{{ azureFunctionReceivers }}',
'{{ armRoleReceivers }}',
'{{ eventHubReceivers }}',
'{{ incidentReceivers }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ actionGroupName }}'
RETURNING
actionDetails,
completedTime,
context,
createdTime,
state
;