notifications_at_tenant_action_group_resource_levels
Creates, updates, deletes, gets or lists a notifications_at_tenant_action_group_resource_levels
resource.
Overview
Name | notifications_at_tenant_action_group_resource_levels |
Type | Resource |
Id | azure.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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
create | insert | managementGroupId , actionGroupName , x-ms-client-tenant-id , data__alertType | Send 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.
Name | Datatype | Description |
---|---|---|
actionGroupName | string | The name of the action group. |
managementGroupId | string | The management group id. |
x-ms-client-tenant-id | string | The tenant ID of the client making the request. |
INSERT
examples
- create
- Manifest
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
;
# Description fields are for documentation purposes
- name: notifications_at_tenant_action_group_resource_levels
props:
- name: managementGroupId
value: string
description: Required parameter for the notifications_at_tenant_action_group_resource_levels resource.
- name: actionGroupName
value: string
description: Required parameter for the notifications_at_tenant_action_group_resource_levels resource.
- name: x-ms-client-tenant-id
value: string
description: Required parameter for the notifications_at_tenant_action_group_resource_levels resource.
- name: alertType
value: string
description: |
The value of the supported alert type. Supported alert type value is: servicehealth
- name: emailReceivers
value: array
description: |
The list of email receivers that are part of this action group.
- name: smsReceivers
value: array
description: |
The list of SMS receivers that are part of this action group.
- name: webhookReceivers
value: array
description: |
The list of webhook receivers that are part of this action group.
- name: azureAppPushReceivers
value: array
description: |
The list of AzureAppPush receivers that are part of this action group.
- name: voiceReceivers
value: array
description: |
The list of voice receivers that are part of this action group.