Modifier

Partager via


alertConfiguration resource type

Namespace: microsoft.graph.healthMonitoring

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the configuration of an alert type defining behavior that occurs when an alert is created in Microsoft Entra Health monitoring. For more information about alert configurations, see What is Microsoft Entra Health?.

Inherits from microsoft.graph.entity.

Methods

Method Return type Description
List microsoft.graph.healthMonitoring.alertConfiguration collection Get a list of the microsoft.graph.healthMonitoring.alertConfiguration objects and their properties.
Get microsoft.graph.healthMonitoring.alertConfiguration Read the properties and relationships of a microsoft.graph.healthMonitoring.alertConfiguration object.
Update microsoft.graph.healthMonitoring.alertConfiguration Update the properties of a microsoft.graph.healthMonitoring.alertConfiguration object.

Properties

Property Type Description
emailNotificationConfigurations microsoft.graph.healthMonitoring.emailNotificationConfiguration collection Defines the recipients of email notifications for an alert type. Currently, only one email notification configuration is supported for an alert configuration, meaning only one group can receive notifications for an alert type.
id String The unique identifier of this alert configuration under the associated tenant. For example: mfaSignInFailure, managedDeviceSignInFailure. The possible values correspond to the values of alertType for an alert object. Inherited from microsoft.graph.entity.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.healthMonitoring.alertConfiguration",
  "id": "String (identifier)",
  "emailNotificationConfigurations": [
    {
      "@odata.type": "microsoft.graph.healthMonitoring.emailNotificationConfiguration"
    }
  ]
}