azure.monitoring.SmartDetectorAlertRule

Manages an Monitor Smart Detector Alert Rule.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
    {
        Location = "West Europe",
    });

    var exampleInsights = new Azure.AppInsights.Insights("exampleInsights", new()
    {
        Location = exampleResourceGroup.Location,
        ResourceGroupName = exampleResourceGroup.Name,
        ApplicationType = "web",
    });

    var exampleActionGroup = new Azure.Monitoring.ActionGroup("exampleActionGroup", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        ShortName = "example",
    });

    var exampleSmartDetectorAlertRule = new Azure.Monitoring.SmartDetectorAlertRule("exampleSmartDetectorAlertRule", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        Severity = "Sev0",
        ScopeResourceIds = new[]
        {
            exampleInsights.Id,
        },
        Frequency = "PT1M",
        DetectorType = "FailureAnomaliesDetector",
        ActionGroup = new Azure.Monitoring.Inputs.SmartDetectorAlertRuleActionGroupArgs
        {
            Ids = new[]
            {
                exampleActionGroup.Id,
            },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appinsights"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/monitoring"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleInsights, err := appinsights.NewInsights(ctx, "exampleInsights", &appinsights.InsightsArgs{
			Location:          exampleResourceGroup.Location,
			ResourceGroupName: exampleResourceGroup.Name,
			ApplicationType:   pulumi.String("web"),
		})
		if err != nil {
			return err
		}
		exampleActionGroup, err := monitoring.NewActionGroup(ctx, "exampleActionGroup", &monitoring.ActionGroupArgs{
			ResourceGroupName: exampleResourceGroup.Name,
			ShortName:         pulumi.String("example"),
		})
		if err != nil {
			return err
		}
		_, err = monitoring.NewSmartDetectorAlertRule(ctx, "exampleSmartDetectorAlertRule", &monitoring.SmartDetectorAlertRuleArgs{
			ResourceGroupName: exampleResourceGroup.Name,
			Severity:          pulumi.String("Sev0"),
			ScopeResourceIds: pulumi.StringArray{
				exampleInsights.ID(),
			},
			Frequency:    pulumi.String("PT1M"),
			DetectorType: pulumi.String("FailureAnomaliesDetector"),
			ActionGroup: &monitoring.SmartDetectorAlertRuleActionGroupArgs{
				Ids: pulumi.StringArray{
					exampleActionGroup.ID(),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.appinsights.Insights;
import com.pulumi.azure.appinsights.InsightsArgs;
import com.pulumi.azure.monitoring.ActionGroup;
import com.pulumi.azure.monitoring.ActionGroupArgs;
import com.pulumi.azure.monitoring.SmartDetectorAlertRule;
import com.pulumi.azure.monitoring.SmartDetectorAlertRuleArgs;
import com.pulumi.azure.monitoring.inputs.SmartDetectorAlertRuleActionGroupArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

        var exampleInsights = new Insights("exampleInsights", InsightsArgs.builder()        
            .location(exampleResourceGroup.location())
            .resourceGroupName(exampleResourceGroup.name())
            .applicationType("web")
            .build());

        var exampleActionGroup = new ActionGroup("exampleActionGroup", ActionGroupArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .shortName("example")
            .build());

        var exampleSmartDetectorAlertRule = new SmartDetectorAlertRule("exampleSmartDetectorAlertRule", SmartDetectorAlertRuleArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .severity("Sev0")
            .scopeResourceIds(exampleInsights.id())
            .frequency("PT1M")
            .detectorType("FailureAnomaliesDetector")
            .actionGroup(SmartDetectorAlertRuleActionGroupArgs.builder()
                .ids(exampleActionGroup.id())
                .build())
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_insights = azure.appinsights.Insights("exampleInsights",
    location=example_resource_group.location,
    resource_group_name=example_resource_group.name,
    application_type="web")
example_action_group = azure.monitoring.ActionGroup("exampleActionGroup",
    resource_group_name=example_resource_group.name,
    short_name="example")
example_smart_detector_alert_rule = azure.monitoring.SmartDetectorAlertRule("exampleSmartDetectorAlertRule",
    resource_group_name=example_resource_group.name,
    severity="Sev0",
    scope_resource_ids=[example_insights.id],
    frequency="PT1M",
    detector_type="FailureAnomaliesDetector",
    action_group=azure.monitoring.SmartDetectorAlertRuleActionGroupArgs(
        ids=[example_action_group.id],
    ))
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleInsights = new azure.appinsights.Insights("exampleInsights", {
    location: exampleResourceGroup.location,
    resourceGroupName: exampleResourceGroup.name,
    applicationType: "web",
});
const exampleActionGroup = new azure.monitoring.ActionGroup("exampleActionGroup", {
    resourceGroupName: exampleResourceGroup.name,
    shortName: "example",
});
const exampleSmartDetectorAlertRule = new azure.monitoring.SmartDetectorAlertRule("exampleSmartDetectorAlertRule", {
    resourceGroupName: exampleResourceGroup.name,
    severity: "Sev0",
    scopeResourceIds: [exampleInsights.id],
    frequency: "PT1M",
    detectorType: "FailureAnomaliesDetector",
    actionGroup: {
        ids: [exampleActionGroup.id],
    },
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleInsights:
    type: azure:appinsights:Insights
    properties:
      location: ${exampleResourceGroup.location}
      resourceGroupName: ${exampleResourceGroup.name}
      applicationType: web
  exampleActionGroup:
    type: azure:monitoring:ActionGroup
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      shortName: example
  exampleSmartDetectorAlertRule:
    type: azure:monitoring:SmartDetectorAlertRule
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      severity: Sev0
      scopeResourceIds:
        - ${exampleInsights.id}
      frequency: PT1M
      detectorType: FailureAnomaliesDetector
      actionGroup:
        ids:
          - ${exampleActionGroup.id}

Create SmartDetectorAlertRule Resource

new SmartDetectorAlertRule(name: string, args: SmartDetectorAlertRuleArgs, opts?: CustomResourceOptions);
@overload
def SmartDetectorAlertRule(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           action_group: Optional[SmartDetectorAlertRuleActionGroupArgs] = None,
                           description: Optional[str] = None,
                           detector_type: Optional[str] = None,
                           enabled: Optional[bool] = None,
                           frequency: Optional[str] = None,
                           name: Optional[str] = None,
                           resource_group_name: Optional[str] = None,
                           scope_resource_ids: Optional[Sequence[str]] = None,
                           severity: Optional[str] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           throttling_duration: Optional[str] = None)
@overload
def SmartDetectorAlertRule(resource_name: str,
                           args: SmartDetectorAlertRuleArgs,
                           opts: Optional[ResourceOptions] = 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:monitoring:SmartDetectorAlertRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args SmartDetectorAlertRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args 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 string
The unique name of the resource.
args SmartDetectorAlertRuleArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args SmartDetectorAlertRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args SmartDetectorAlertRuleArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

The SmartDetectorAlertRule resource accepts the following input properties:

ActionGroup SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

DetectorType string

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

Frequency string

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

ResourceGroupName string

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

ScopeResourceIds List<string>

Specifies the scopes of this Smart Detector Alert Rule.

Severity string

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

Description string

Specifies a description for the Smart Detector Alert Rule.

Enabled bool

Is the Smart Detector Alert Rule enabled? Defaults to true.

Name string

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

ThrottlingDuration string

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

ActionGroup SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

DetectorType string

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

Frequency string

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

ResourceGroupName string

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

ScopeResourceIds []string

Specifies the scopes of this Smart Detector Alert Rule.

Severity string

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

Description string

Specifies a description for the Smart Detector Alert Rule.

Enabled bool

Is the Smart Detector Alert Rule enabled? Defaults to true.

Name string

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

Tags map[string]string

A mapping of tags to assign to the resource.

ThrottlingDuration string

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

actionGroup SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

detectorType String

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

frequency String

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

resourceGroupName String

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

scopeResourceIds List<String>

Specifies the scopes of this Smart Detector Alert Rule.

severity String

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

description String

Specifies a description for the Smart Detector Alert Rule.

enabled Boolean

Is the Smart Detector Alert Rule enabled? Defaults to true.

name String

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

tags Map<String,String>

A mapping of tags to assign to the resource.

throttlingDuration String

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

actionGroup SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

detectorType string

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

frequency string

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

resourceGroupName string

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

scopeResourceIds string[]

Specifies the scopes of this Smart Detector Alert Rule.

severity string

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

description string

Specifies a description for the Smart Detector Alert Rule.

enabled boolean

Is the Smart Detector Alert Rule enabled? Defaults to true.

name string

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

throttlingDuration string

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

action_group SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

detector_type str

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

frequency str

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

resource_group_name str

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

scope_resource_ids Sequence[str]

Specifies the scopes of this Smart Detector Alert Rule.

severity str

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

description str

Specifies a description for the Smart Detector Alert Rule.

enabled bool

Is the Smart Detector Alert Rule enabled? Defaults to true.

name str

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

tags Mapping[str, str]

A mapping of tags to assign to the resource.

throttling_duration str

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

actionGroup Property Map

An action_group block as defined below.

detectorType String

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

frequency String

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

resourceGroupName String

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

scopeResourceIds List<String>

Specifies the scopes of this Smart Detector Alert Rule.

severity String

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

description String

Specifies a description for the Smart Detector Alert Rule.

enabled Boolean

Is the Smart Detector Alert Rule enabled? Defaults to true.

name String

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

tags Map<String>

A mapping of tags to assign to the resource.

throttlingDuration String

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

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.

Id string

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

id string

The provider-assigned unique ID for this managed resource.

id str

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing SmartDetectorAlertRule Resource

Get an existing SmartDetectorAlertRule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: SmartDetectorAlertRuleState, opts?: CustomResourceOptions): SmartDetectorAlertRule
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        action_group: Optional[SmartDetectorAlertRuleActionGroupArgs] = None,
        description: Optional[str] = None,
        detector_type: Optional[str] = None,
        enabled: Optional[bool] = None,
        frequency: Optional[str] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        scope_resource_ids: Optional[Sequence[str]] = None,
        severity: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        throttling_duration: Optional[str] = None) -> SmartDetectorAlertRule
func GetSmartDetectorAlertRule(ctx *Context, name string, id IDInput, state *SmartDetectorAlertRuleState, opts ...ResourceOption) (*SmartDetectorAlertRule, error)
public static SmartDetectorAlertRule Get(string name, Input<string> id, SmartDetectorAlertRuleState? state, CustomResourceOptions? opts = null)
public static SmartDetectorAlertRule get(String name, Output<String> id, SmartDetectorAlertRuleState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ActionGroup SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

Description string

Specifies a description for the Smart Detector Alert Rule.

DetectorType string

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

Enabled bool

Is the Smart Detector Alert Rule enabled? Defaults to true.

Frequency string

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

Name string

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

ResourceGroupName string

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

ScopeResourceIds List<string>

Specifies the scopes of this Smart Detector Alert Rule.

Severity string

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

Tags Dictionary<string, string>

A mapping of tags to assign to the resource.

ThrottlingDuration string

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

ActionGroup SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

Description string

Specifies a description for the Smart Detector Alert Rule.

DetectorType string

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

Enabled bool

Is the Smart Detector Alert Rule enabled? Defaults to true.

Frequency string

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

Name string

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

ResourceGroupName string

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

ScopeResourceIds []string

Specifies the scopes of this Smart Detector Alert Rule.

Severity string

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

Tags map[string]string

A mapping of tags to assign to the resource.

ThrottlingDuration string

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

actionGroup SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

description String

Specifies a description for the Smart Detector Alert Rule.

detectorType String

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

enabled Boolean

Is the Smart Detector Alert Rule enabled? Defaults to true.

frequency String

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

name String

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

resourceGroupName String

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

scopeResourceIds List<String>

Specifies the scopes of this Smart Detector Alert Rule.

severity String

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

tags Map<String,String>

A mapping of tags to assign to the resource.

throttlingDuration String

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

actionGroup SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

description string

Specifies a description for the Smart Detector Alert Rule.

detectorType string

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

enabled boolean

Is the Smart Detector Alert Rule enabled? Defaults to true.

frequency string

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

name string

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

resourceGroupName string

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

scopeResourceIds string[]

Specifies the scopes of this Smart Detector Alert Rule.

severity string

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

tags {[key: string]: string}

A mapping of tags to assign to the resource.

throttlingDuration string

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

action_group SmartDetectorAlertRuleActionGroupArgs

An action_group block as defined below.

description str

Specifies a description for the Smart Detector Alert Rule.

detector_type str

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

enabled bool

Is the Smart Detector Alert Rule enabled? Defaults to true.

frequency str

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

name str

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

resource_group_name str

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

scope_resource_ids Sequence[str]

Specifies the scopes of this Smart Detector Alert Rule.

severity str

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

tags Mapping[str, str]

A mapping of tags to assign to the resource.

throttling_duration str

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

actionGroup Property Map

An action_group block as defined below.

description String

Specifies a description for the Smart Detector Alert Rule.

detectorType String

Specifies the Built-In Smart Detector type that this alert rule will use. Currently the only possible values are FailureAnomaliesDetector, RequestPerformanceDegradationDetector, DependencyPerformanceDegradationDetector, ExceptionVolumeChangedDetector, TraceSeverityDetector, MemoryLeakDetector.

enabled Boolean

Is the Smart Detector Alert Rule enabled? Defaults to true.

frequency String

Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.

name String

Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.

resourceGroupName String

Specifies the name of the resource group in which the Monitor Smart Detector Alert Rule should exist. Changing this forces a new resource to be created.

scopeResourceIds List<String>

Specifies the scopes of this Smart Detector Alert Rule.

severity String

Specifies the severity of this Smart Detector Alert Rule. Possible values are Sev0, Sev1, Sev2, Sev3 or Sev4.

tags Map<String>

A mapping of tags to assign to the resource.

throttlingDuration String

Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.

Supporting Types

SmartDetectorAlertRuleActionGroup

Ids List<string>

Specifies the action group ids.

EmailSubject string

Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.

WebhookPayload string

A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.

Ids []string

Specifies the action group ids.

EmailSubject string

Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.

WebhookPayload string

A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.

ids List<String>

Specifies the action group ids.

emailSubject String

Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.

webhookPayload String

A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.

ids string[]

Specifies the action group ids.

emailSubject string

Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.

webhookPayload string

A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.

ids Sequence[str]

Specifies the action group ids.

email_subject str

Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.

webhook_payload str

A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.

ids List<String>

Specifies the action group ids.

emailSubject String

Specifies a custom email subject if Email Receiver is specified in Monitor Action Group resource.

webhookPayload String

A JSON String which Specifies the custom webhook payload if Webhook Receiver is specified in Monitor Action Group resource.

Import

Monitor Smart Detector Alert Rule can be imported using the resource id, e.g.

 $ pulumi import azure:monitoring/smartDetectorAlertRule:SmartDetectorAlertRule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AlertsManagement/smartDetectorAlertRules/rule1

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.