1. Packages
  2. Azure Native v2
  3. API Docs
  4. alertsmanagement
  5. SmartDetectorAlertRule
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.alertsmanagement.SmartDetectorAlertRule

Explore with Pulumi AI

The alert rule information Azure REST API version: 2021-04-01. Prior API version in Azure Native 1.x: 2019-06-01.

Example Usage

Create or update a Smart Detector alert rule

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var smartDetectorAlertRule = new AzureNative.AlertsManagement.SmartDetectorAlertRule("smartDetectorAlertRule", new()
    {
        ActionGroups = new AzureNative.AlertsManagement.Inputs.ActionGroupsInformationArgs
        {
            CustomEmailSubject = "My custom email subject",
            CustomWebhookPayload = "{\"AlertRuleName\":\"#alertrulename\"}",
            GroupIds = new[]
            {
                "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup",
            },
        },
        AlertRuleName = "MyAlertRule",
        Description = "Sample smart detector alert rule description",
        Detector = new AzureNative.AlertsManagement.Inputs.DetectorArgs
        {
            Id = "VMMemoryLeak",
        },
        Frequency = "PT5M",
        ResourceGroupName = "MyAlertRules",
        Scope = new[]
        {
            "/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1",
        },
        Severity = AzureNative.AlertsManagement.Severity.Sev3,
        State = AzureNative.AlertsManagement.AlertRuleState.Enabled,
        Throttling = new AzureNative.AlertsManagement.Inputs.ThrottlingInformationArgs
        {
            Duration = "PT20M",
        },
    });

});
Copy
package main

import (
	alertsmanagement "github.com/pulumi/pulumi-azure-native-sdk/alertsmanagement/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := alertsmanagement.NewSmartDetectorAlertRule(ctx, "smartDetectorAlertRule", &alertsmanagement.SmartDetectorAlertRuleArgs{
			ActionGroups: &alertsmanagement.ActionGroupsInformationArgs{
				CustomEmailSubject:   pulumi.String("My custom email subject"),
				CustomWebhookPayload: pulumi.String("{\"AlertRuleName\":\"#alertrulename\"}"),
				GroupIds: pulumi.StringArray{
					pulumi.String("/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup"),
				},
			},
			AlertRuleName: pulumi.String("MyAlertRule"),
			Description:   pulumi.String("Sample smart detector alert rule description"),
			Detector: &alertsmanagement.DetectorArgs{
				Id: pulumi.String("VMMemoryLeak"),
			},
			Frequency:         pulumi.String("PT5M"),
			ResourceGroupName: pulumi.String("MyAlertRules"),
			Scope: pulumi.StringArray{
				pulumi.String("/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"),
			},
			Severity: pulumi.String(alertsmanagement.SeveritySev3),
			State:    pulumi.String(alertsmanagement.AlertRuleStateEnabled),
			Throttling: &alertsmanagement.ThrottlingInformationArgs{
				Duration: pulumi.String("PT20M"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.alertsmanagement.SmartDetectorAlertRule;
import com.pulumi.azurenative.alertsmanagement.SmartDetectorAlertRuleArgs;
import com.pulumi.azurenative.alertsmanagement.inputs.ActionGroupsInformationArgs;
import com.pulumi.azurenative.alertsmanagement.inputs.DetectorArgs;
import com.pulumi.azurenative.alertsmanagement.inputs.ThrottlingInformationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var smartDetectorAlertRule = new SmartDetectorAlertRule("smartDetectorAlertRule", SmartDetectorAlertRuleArgs.builder()
            .actionGroups(ActionGroupsInformationArgs.builder()
                .customEmailSubject("My custom email subject")
                .customWebhookPayload("{\"AlertRuleName\":\"#alertrulename\"}")
                .groupIds("/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup")
                .build())
            .alertRuleName("MyAlertRule")
            .description("Sample smart detector alert rule description")
            .detector(DetectorArgs.builder()
                .id("VMMemoryLeak")
                .build())
            .frequency("PT5M")
            .resourceGroupName("MyAlertRules")
            .scope("/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1")
            .severity("Sev3")
            .state("Enabled")
            .throttling(ThrottlingInformationArgs.builder()
                .duration("PT20M")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const smartDetectorAlertRule = new azure_native.alertsmanagement.SmartDetectorAlertRule("smartDetectorAlertRule", {
    actionGroups: {
        customEmailSubject: "My custom email subject",
        customWebhookPayload: "{\"AlertRuleName\":\"#alertrulename\"}",
        groupIds: ["/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup"],
    },
    alertRuleName: "MyAlertRule",
    description: "Sample smart detector alert rule description",
    detector: {
        id: "VMMemoryLeak",
    },
    frequency: "PT5M",
    resourceGroupName: "MyAlertRules",
    scope: ["/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"],
    severity: azure_native.alertsmanagement.Severity.Sev3,
    state: azure_native.alertsmanagement.AlertRuleState.Enabled,
    throttling: {
        duration: "PT20M",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

smart_detector_alert_rule = azure_native.alertsmanagement.SmartDetectorAlertRule("smartDetectorAlertRule",
    action_groups={
        "custom_email_subject": "My custom email subject",
        "custom_webhook_payload": "{\"AlertRuleName\":\"#alertrulename\"}",
        "group_ids": ["/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup"],
    },
    alert_rule_name="MyAlertRule",
    description="Sample smart detector alert rule description",
    detector={
        "id": "VMMemoryLeak",
    },
    frequency="PT5M",
    resource_group_name="MyAlertRules",
    scope=["/subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1"],
    severity=azure_native.alertsmanagement.Severity.SEV3,
    state=azure_native.alertsmanagement.AlertRuleState.ENABLED,
    throttling={
        "duration": "PT20M",
    })
Copy
resources:
  smartDetectorAlertRule:
    type: azure-native:alertsmanagement:SmartDetectorAlertRule
    properties:
      actionGroups:
        customEmailSubject: My custom email subject
        customWebhookPayload: '{"AlertRuleName":"#alertrulename"}'
        groupIds:
          - /subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourcegroups/actionGroups/providers/microsoft.insights/actiongroups/MyActionGroup
      alertRuleName: MyAlertRule
      description: Sample smart detector alert rule description
      detector:
        id: VMMemoryLeak
      frequency: PT5M
      resourceGroupName: MyAlertRules
      scope:
        - /subscriptions/b368ca2f-e298-46b7-b0ab-012281956afa/resourceGroups/MyVms/providers/Microsoft.Compute/virtualMachines/vm1
      severity: Sev3
      state: Enabled
      throttling:
        duration: PT20M
Copy

Create SmartDetectorAlertRule Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new SmartDetectorAlertRule(name: string, args: SmartDetectorAlertRuleArgs, opts?: CustomResourceOptions);
@overload
def SmartDetectorAlertRule(resource_name: str,
                           args: SmartDetectorAlertRuleArgs,
                           opts: Optional[ResourceOptions] = None)

@overload
def SmartDetectorAlertRule(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           action_groups: Optional[ActionGroupsInformationArgs] = None,
                           detector: Optional[DetectorArgs] = None,
                           frequency: Optional[str] = None,
                           resource_group_name: Optional[str] = None,
                           scope: Optional[Sequence[str]] = None,
                           severity: Optional[Union[str, Severity]] = None,
                           state: Optional[Union[str, AlertRuleState]] = None,
                           alert_rule_name: Optional[str] = None,
                           description: Optional[str] = None,
                           location: Optional[str] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           throttling: Optional[ThrottlingInformationArgs] = None)
func NewSmartDetectorAlertRule(ctx *Context, name string, args SmartDetectorAlertRuleArgs, opts ...ResourceOption) (*SmartDetectorAlertRule, error)
public SmartDetectorAlertRule(string name, SmartDetectorAlertRuleArgs args, CustomResourceOptions? opts = null)
public SmartDetectorAlertRule(String name, SmartDetectorAlertRuleArgs args)
public SmartDetectorAlertRule(String name, SmartDetectorAlertRuleArgs args, CustomResourceOptions options)
type: azure-native:alertsmanagement:SmartDetectorAlertRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SmartDetectorAlertRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SmartDetectorAlertRuleArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SmartDetectorAlertRuleArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SmartDetectorAlertRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SmartDetectorAlertRuleArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var smartDetectorAlertRuleResource = new AzureNative.Alertsmanagement.SmartDetectorAlertRule("smartDetectorAlertRuleResource", new()
{
    ActionGroups = 
    {
        { "groupIds", new[]
        {
            "string",
        } },
        { "customEmailSubject", "string" },
        { "customWebhookPayload", "string" },
    },
    Detector = 
    {
        { "id", "string" },
        { "parameters", 
        {
            { "string", "any" },
        } },
    },
    Frequency = "string",
    ResourceGroupName = "string",
    Scope = new[]
    {
        "string",
    },
    Severity = "string",
    State = "string",
    AlertRuleName = "string",
    Description = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Throttling = 
    {
        { "duration", "string" },
    },
});
Copy
example, err := alertsmanagement.NewSmartDetectorAlertRule(ctx, "smartDetectorAlertRuleResource", &alertsmanagement.SmartDetectorAlertRuleArgs{
	ActionGroups: map[string]interface{}{
		"groupIds": []string{
			"string",
		},
		"customEmailSubject":   "string",
		"customWebhookPayload": "string",
	},
	Detector: map[string]interface{}{
		"id": "string",
		"parameters": map[string]interface{}{
			"string": "any",
		},
	},
	Frequency:         "string",
	ResourceGroupName: "string",
	Scope: []string{
		"string",
	},
	Severity:      "string",
	State:         "string",
	AlertRuleName: "string",
	Description:   "string",
	Location:      "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	Throttling: map[string]interface{}{
		"duration": "string",
	},
})
Copy
var smartDetectorAlertRuleResource = new SmartDetectorAlertRule("smartDetectorAlertRuleResource", SmartDetectorAlertRuleArgs.builder()
    .actionGroups(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .detector(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .frequency("string")
    .resourceGroupName("string")
    .scope("string")
    .severity("string")
    .state("string")
    .alertRuleName("string")
    .description("string")
    .location("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .throttling(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
smart_detector_alert_rule_resource = azure_native.alertsmanagement.SmartDetectorAlertRule("smartDetectorAlertRuleResource",
    action_groups={
        groupIds: [string],
        customEmailSubject: string,
        customWebhookPayload: string,
    },
    detector={
        id: string,
        parameters: {
            string: any,
        },
    },
    frequency=string,
    resource_group_name=string,
    scope=[string],
    severity=string,
    state=string,
    alert_rule_name=string,
    description=string,
    location=string,
    tags={
        string: string,
    },
    throttling={
        duration: string,
    })
Copy
const smartDetectorAlertRuleResource = new azure_native.alertsmanagement.SmartDetectorAlertRule("smartDetectorAlertRuleResource", {
    actionGroups: {
        groupIds: ["string"],
        customEmailSubject: "string",
        customWebhookPayload: "string",
    },
    detector: {
        id: "string",
        parameters: {
            string: "any",
        },
    },
    frequency: "string",
    resourceGroupName: "string",
    scope: ["string"],
    severity: "string",
    state: "string",
    alertRuleName: "string",
    description: "string",
    location: "string",
    tags: {
        string: "string",
    },
    throttling: {
        duration: "string",
    },
});
Copy
type: azure-native:alertsmanagement:SmartDetectorAlertRule
properties:
    actionGroups:
        customEmailSubject: string
        customWebhookPayload: string
        groupIds:
            - string
    alertRuleName: string
    description: string
    detector:
        id: string
        parameters:
            string: any
    frequency: string
    location: string
    resourceGroupName: string
    scope:
        - string
    severity: string
    state: string
    tags:
        string: string
    throttling:
        duration: string
Copy

SmartDetectorAlertRule Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The SmartDetectorAlertRule resource accepts the following input properties:

ActionGroups This property is required. Pulumi.AzureNative.AlertsManagement.Inputs.ActionGroupsInformation
The alert rule actions.
Detector This property is required. Pulumi.AzureNative.AlertsManagement.Inputs.Detector
The alert rule's detector.
Frequency This property is required. string
The alert rule frequency in ISO8601 format. The time granularity must be in minutes and minimum value is 1 minute, depending on the detector.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
Scope This property is required. List<string>
The alert rule resources scope.
Severity This property is required. string | Pulumi.AzureNative.AlertsManagement.Severity
The alert rule severity.
State This property is required. string | Pulumi.AzureNative.AlertsManagement.AlertRuleState
The alert rule state.
AlertRuleName Changes to this property will trigger replacement. string
The name of the alert rule.
Description string
The alert rule description.
Location string
The resource location.
Tags Dictionary<string, string>
The resource tags.
Throttling Pulumi.AzureNative.AlertsManagement.Inputs.ThrottlingInformation
The alert rule throttling information.
ActionGroups This property is required. ActionGroupsInformationArgs
The alert rule actions.
Detector This property is required. DetectorArgs
The alert rule's detector.
Frequency This property is required. string
The alert rule frequency in ISO8601 format. The time granularity must be in minutes and minimum value is 1 minute, depending on the detector.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
Scope This property is required. []string
The alert rule resources scope.
Severity This property is required. string | Severity
The alert rule severity.
State This property is required. string | AlertRuleState
The alert rule state.
AlertRuleName Changes to this property will trigger replacement. string
The name of the alert rule.
Description string
The alert rule description.
Location string
The resource location.
Tags map[string]string
The resource tags.
Throttling ThrottlingInformationArgs
The alert rule throttling information.
actionGroups This property is required. ActionGroupsInformation
The alert rule actions.
detector This property is required. Detector
The alert rule's detector.
frequency This property is required. String
The alert rule frequency in ISO8601 format. The time granularity must be in minutes and minimum value is 1 minute, depending on the detector.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
scope This property is required. List<String>
The alert rule resources scope.
severity This property is required. String | Severity
The alert rule severity.
state This property is required. String | AlertRuleState
The alert rule state.
alertRuleName Changes to this property will trigger replacement. String
The name of the alert rule.
description String
The alert rule description.
location String
The resource location.
tags Map<String,String>
The resource tags.
throttling ThrottlingInformation
The alert rule throttling information.
actionGroups This property is required. ActionGroupsInformation
The alert rule actions.
detector This property is required. Detector
The alert rule's detector.
frequency This property is required. string
The alert rule frequency in ISO8601 format. The time granularity must be in minutes and minimum value is 1 minute, depending on the detector.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
scope This property is required. string[]
The alert rule resources scope.
severity This property is required. string | Severity
The alert rule severity.
state This property is required. string | AlertRuleState
The alert rule state.
alertRuleName Changes to this property will trigger replacement. string
The name of the alert rule.
description string
The alert rule description.
location string
The resource location.
tags {[key: string]: string}
The resource tags.
throttling ThrottlingInformation
The alert rule throttling information.
action_groups This property is required. ActionGroupsInformationArgs
The alert rule actions.
detector This property is required. DetectorArgs
The alert rule's detector.
frequency This property is required. str
The alert rule frequency in ISO8601 format. The time granularity must be in minutes and minimum value is 1 minute, depending on the detector.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
scope This property is required. Sequence[str]
The alert rule resources scope.
severity This property is required. str | Severity
The alert rule severity.
state This property is required. str | AlertRuleState
The alert rule state.
alert_rule_name Changes to this property will trigger replacement. str
The name of the alert rule.
description str
The alert rule description.
location str
The resource location.
tags Mapping[str, str]
The resource tags.
throttling ThrottlingInformationArgs
The alert rule throttling information.
actionGroups This property is required. Property Map
The alert rule actions.
detector This property is required. Property Map
The alert rule's detector.
frequency This property is required. String
The alert rule frequency in ISO8601 format. The time granularity must be in minutes and minimum value is 1 minute, depending on the detector.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
scope This property is required. List<String>
The alert rule resources scope.
severity This property is required. String | "Sev0" | "Sev1" | "Sev2" | "Sev3" | "Sev4"
The alert rule severity.
state This property is required. String | "Enabled" | "Disabled"
The alert rule state.
alertRuleName Changes to this property will trigger replacement. String
The name of the alert rule.
description String
The alert rule description.
location String
The resource location.
tags Map<String>
The resource tags.
throttling Property Map
The alert rule throttling information.

Outputs

All input properties are implicitly available as output properties. Additionally, the SmartDetectorAlertRule resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
Type string
The resource type.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
Type string
The resource type.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
type String
The resource type.
id string
The provider-assigned unique ID for this managed resource.
name string
The resource name.
type string
The resource type.
id str
The provider-assigned unique ID for this managed resource.
name str
The resource name.
type str
The resource type.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
type String
The resource type.

Supporting Types

ActionGroupsInformation
, ActionGroupsInformationArgs

GroupIds This property is required. List<string>
The Action Group resource IDs.
CustomEmailSubject string
An optional custom email subject to use in email notifications.
CustomWebhookPayload string
An optional custom web-hook payload to use in web-hook notifications.
GroupIds This property is required. []string
The Action Group resource IDs.
CustomEmailSubject string
An optional custom email subject to use in email notifications.
CustomWebhookPayload string
An optional custom web-hook payload to use in web-hook notifications.
groupIds This property is required. List<String>
The Action Group resource IDs.
customEmailSubject String
An optional custom email subject to use in email notifications.
customWebhookPayload String
An optional custom web-hook payload to use in web-hook notifications.
groupIds This property is required. string[]
The Action Group resource IDs.
customEmailSubject string
An optional custom email subject to use in email notifications.
customWebhookPayload string
An optional custom web-hook payload to use in web-hook notifications.
group_ids This property is required. Sequence[str]
The Action Group resource IDs.
custom_email_subject str
An optional custom email subject to use in email notifications.
custom_webhook_payload str
An optional custom web-hook payload to use in web-hook notifications.
groupIds This property is required. List<String>
The Action Group resource IDs.
customEmailSubject String
An optional custom email subject to use in email notifications.
customWebhookPayload String
An optional custom web-hook payload to use in web-hook notifications.

ActionGroupsInformationResponse
, ActionGroupsInformationResponseArgs

GroupIds This property is required. List<string>
The Action Group resource IDs.
CustomEmailSubject string
An optional custom email subject to use in email notifications.
CustomWebhookPayload string
An optional custom web-hook payload to use in web-hook notifications.
GroupIds This property is required. []string
The Action Group resource IDs.
CustomEmailSubject string
An optional custom email subject to use in email notifications.
CustomWebhookPayload string
An optional custom web-hook payload to use in web-hook notifications.
groupIds This property is required. List<String>
The Action Group resource IDs.
customEmailSubject String
An optional custom email subject to use in email notifications.
customWebhookPayload String
An optional custom web-hook payload to use in web-hook notifications.
groupIds This property is required. string[]
The Action Group resource IDs.
customEmailSubject string
An optional custom email subject to use in email notifications.
customWebhookPayload string
An optional custom web-hook payload to use in web-hook notifications.
group_ids This property is required. Sequence[str]
The Action Group resource IDs.
custom_email_subject str
An optional custom email subject to use in email notifications.
custom_webhook_payload str
An optional custom web-hook payload to use in web-hook notifications.
groupIds This property is required. List<String>
The Action Group resource IDs.
customEmailSubject String
An optional custom email subject to use in email notifications.
customWebhookPayload String
An optional custom web-hook payload to use in web-hook notifications.

AlertRuleState
, AlertRuleStateArgs

Enabled
Enabled
Disabled
Disabled
AlertRuleStateEnabled
Enabled
AlertRuleStateDisabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
ENABLED
Enabled
DISABLED
Disabled
"Enabled"
Enabled
"Disabled"
Disabled

Detector
, DetectorArgs

Id This property is required. string
The detector id.
Parameters Dictionary<string, object>
The detector's parameters.'
Id This property is required. string
The detector id.
Parameters map[string]interface{}
The detector's parameters.'
id This property is required. String
The detector id.
parameters Map<String,Object>
The detector's parameters.'
id This property is required. string
The detector id.
parameters {[key: string]: any}
The detector's parameters.'
id This property is required. str
The detector id.
parameters Mapping[str, Any]
The detector's parameters.'
id This property is required. String
The detector id.
parameters Map<Any>
The detector's parameters.'

DetectorParameterDefinitionResponse
, DetectorParameterDefinitionResponseArgs

Description string
The detector parameter description.
DisplayName string
The detector parameter display name.
IsMandatory bool
A value indicating whether this detector parameter is mandatory.
Name string
The detector parameter name.
Type string
The detector parameter type.
Description string
The detector parameter description.
DisplayName string
The detector parameter display name.
IsMandatory bool
A value indicating whether this detector parameter is mandatory.
Name string
The detector parameter name.
Type string
The detector parameter type.
description String
The detector parameter description.
displayName String
The detector parameter display name.
isMandatory Boolean
A value indicating whether this detector parameter is mandatory.
name String
The detector parameter name.
type String
The detector parameter type.
description string
The detector parameter description.
displayName string
The detector parameter display name.
isMandatory boolean
A value indicating whether this detector parameter is mandatory.
name string
The detector parameter name.
type string
The detector parameter type.
description str
The detector parameter description.
display_name str
The detector parameter display name.
is_mandatory bool
A value indicating whether this detector parameter is mandatory.
name str
The detector parameter name.
type str
The detector parameter type.
description String
The detector parameter description.
displayName String
The detector parameter display name.
isMandatory Boolean
A value indicating whether this detector parameter is mandatory.
name String
The detector parameter name.
type String
The detector parameter type.

DetectorResponse
, DetectorResponseArgs

Description This property is required. string
The Smart Detector description.
Id This property is required. string
The detector id.
ImagePaths This property is required. List<string>
The Smart Detector image path. By default this is not populated, unless it's specified in expandDetector
Name This property is required. string
The Smart Detector name.
ParameterDefinitions This property is required. List<Pulumi.AzureNative.AlertsManagement.Inputs.DetectorParameterDefinitionResponse>
The Smart Detector parameters definitions.'
SupportedCadences This property is required. List<int>
The Smart Detector supported cadences.
SupportedResourceTypes This property is required. List<string>
The Smart Detector supported resource types.
Parameters Dictionary<string, object>
The detector's parameters.'
Description This property is required. string
The Smart Detector description.
Id This property is required. string
The detector id.
ImagePaths This property is required. []string
The Smart Detector image path. By default this is not populated, unless it's specified in expandDetector
Name This property is required. string
The Smart Detector name.
ParameterDefinitions This property is required. []DetectorParameterDefinitionResponse
The Smart Detector parameters definitions.'
SupportedCadences This property is required. []int
The Smart Detector supported cadences.
SupportedResourceTypes This property is required. []string
The Smart Detector supported resource types.
Parameters map[string]interface{}
The detector's parameters.'
description This property is required. String
The Smart Detector description.
id This property is required. String
The detector id.
imagePaths This property is required. List<String>
The Smart Detector image path. By default this is not populated, unless it's specified in expandDetector
name This property is required. String
The Smart Detector name.
parameterDefinitions This property is required. List<DetectorParameterDefinitionResponse>
The Smart Detector parameters definitions.'
supportedCadences This property is required. List<Integer>
The Smart Detector supported cadences.
supportedResourceTypes This property is required. List<String>
The Smart Detector supported resource types.
parameters Map<String,Object>
The detector's parameters.'
description This property is required. string
The Smart Detector description.
id This property is required. string
The detector id.
imagePaths This property is required. string[]
The Smart Detector image path. By default this is not populated, unless it's specified in expandDetector
name This property is required. string
The Smart Detector name.
parameterDefinitions This property is required. DetectorParameterDefinitionResponse[]
The Smart Detector parameters definitions.'
supportedCadences This property is required. number[]
The Smart Detector supported cadences.
supportedResourceTypes This property is required. string[]
The Smart Detector supported resource types.
parameters {[key: string]: any}
The detector's parameters.'
description This property is required. str
The Smart Detector description.
id This property is required. str
The detector id.
image_paths This property is required. Sequence[str]
The Smart Detector image path. By default this is not populated, unless it's specified in expandDetector
name This property is required. str
The Smart Detector name.
parameter_definitions This property is required. Sequence[DetectorParameterDefinitionResponse]
The Smart Detector parameters definitions.'
supported_cadences This property is required. Sequence[int]
The Smart Detector supported cadences.
supported_resource_types This property is required. Sequence[str]
The Smart Detector supported resource types.
parameters Mapping[str, Any]
The detector's parameters.'
description This property is required. String
The Smart Detector description.
id This property is required. String
The detector id.
imagePaths This property is required. List<String>
The Smart Detector image path. By default this is not populated, unless it's specified in expandDetector
name This property is required. String
The Smart Detector name.
parameterDefinitions This property is required. List<Property Map>
The Smart Detector parameters definitions.'
supportedCadences This property is required. List<Number>
The Smart Detector supported cadences.
supportedResourceTypes This property is required. List<String>
The Smart Detector supported resource types.
parameters Map<Any>
The detector's parameters.'

Severity
, SeverityArgs

Sev0
Sev0
Sev1
Sev1
Sev2
Sev2
Sev3
Sev3
Sev4
Sev4
SeveritySev0
Sev0
SeveritySev1
Sev1
SeveritySev2
Sev2
SeveritySev3
Sev3
SeveritySev4
Sev4
Sev0
Sev0
Sev1
Sev1
Sev2
Sev2
Sev3
Sev3
Sev4
Sev4
Sev0
Sev0
Sev1
Sev1
Sev2
Sev2
Sev3
Sev3
Sev4
Sev4
SEV0
Sev0
SEV1
Sev1
SEV2
Sev2
SEV3
Sev3
SEV4
Sev4
"Sev0"
Sev0
"Sev1"
Sev1
"Sev2"
Sev2
"Sev3"
Sev3
"Sev4"
Sev4

ThrottlingInformation
, ThrottlingInformationArgs

Duration string
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
Duration string
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
duration String
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
duration string
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
duration str
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
duration String
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes

ThrottlingInformationResponse
, ThrottlingInformationResponseArgs

Duration string
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
Duration string
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
duration String
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
duration string
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
duration str
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes
duration String
The required duration (in ISO8601 format) to wait before notifying on the alert rule again. The time granularity must be in minutes and minimum value is 0 minutes

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:alertsmanagement:SmartDetectorAlertRule MyAlertRule /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/microsoft.alertsManagement/smartDetectorAlertRules/{alertRuleName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0