All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.monitoring.kotlin.SmartDetectorAlertRule.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.monitoring.kotlin

import com.pulumi.azure.monitoring.kotlin.outputs.SmartDetectorAlertRuleActionGroup
import com.pulumi.azure.monitoring.kotlin.outputs.SmartDetectorAlertRuleActionGroup.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map

/**
 * Builder for [SmartDetectorAlertRule].
 */
@PulumiTagMarker
public class SmartDetectorAlertRuleResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: SmartDetectorAlertRuleArgs = SmartDetectorAlertRuleArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend SmartDetectorAlertRuleArgsBuilder.() -> Unit) {
        val builder = SmartDetectorAlertRuleArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): SmartDetectorAlertRule {
        val builtJavaResource =
            com.pulumi.azure.monitoring.SmartDetectorAlertRule(
                this.name,
                this.args.toJava(),
                this.opts.toJava(),
            )
        return SmartDetectorAlertRule(builtJavaResource)
    }
}

/**
 * Manages an Monitor Smart Detector Alert Rule.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as azure from "@pulumi/azure";
 * const example = new azure.core.ResourceGroup("example", {
 *     name: "example-resources",
 *     location: "West Europe",
 * });
 * const exampleInsights = new azure.appinsights.Insights("example", {
 *     name: "example-appinsights",
 *     location: example.location,
 *     resourceGroupName: example.name,
 *     applicationType: "web",
 * });
 * const exampleActionGroup = new azure.monitoring.ActionGroup("example", {
 *     name: "example-action-group",
 *     resourceGroupName: example.name,
 *     shortName: "example",
 * });
 * const exampleSmartDetectorAlertRule = new azure.monitoring.SmartDetectorAlertRule("example", {
 *     name: "example-smart-detector-alert-rule",
 *     resourceGroupName: example.name,
 *     severity: "Sev0",
 *     scopeResourceIds: [exampleInsights.id],
 *     frequency: "PT1M",
 *     detectorType: "FailureAnomaliesDetector",
 *     actionGroup: {
 *         ids: [exampleActionGroup.id],
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="example-resources",
 *     location="West Europe")
 * example_insights = azure.appinsights.Insights("example",
 *     name="example-appinsights",
 *     location=example.location,
 *     resource_group_name=example.name,
 *     application_type="web")
 * example_action_group = azure.monitoring.ActionGroup("example",
 *     name="example-action-group",
 *     resource_group_name=example.name,
 *     short_name="example")
 * example_smart_detector_alert_rule = azure.monitoring.SmartDetectorAlertRule("example",
 *     name="example-smart-detector-alert-rule",
 *     resource_group_name=example.name,
 *     severity="Sev0",
 *     scope_resource_ids=[example_insights.id],
 *     frequency="PT1M",
 *     detector_type="FailureAnomaliesDetector",
 *     action_group={
 *         "ids": [example_action_group.id],
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Azure = Pulumi.Azure;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Azure.Core.ResourceGroup("example", new()
 *     {
 *         Name = "example-resources",
 *         Location = "West Europe",
 *     });
 *     var exampleInsights = new Azure.AppInsights.Insights("example", new()
 *     {
 *         Name = "example-appinsights",
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *         ApplicationType = "web",
 *     });
 *     var exampleActionGroup = new Azure.Monitoring.ActionGroup("example", new()
 *     {
 *         Name = "example-action-group",
 *         ResourceGroupName = example.Name,
 *         ShortName = "example",
 *     });
 *     var exampleSmartDetectorAlertRule = new Azure.Monitoring.SmartDetectorAlertRule("example", new()
 *     {
 *         Name = "example-smart-detector-alert-rule",
 *         ResourceGroupName = example.Name,
 *         Severity = "Sev0",
 *         ScopeResourceIds = new[]
 *         {
 *             exampleInsights.Id,
 *         },
 *         Frequency = "PT1M",
 *         DetectorType = "FailureAnomaliesDetector",
 *         ActionGroup = new Azure.Monitoring.Inputs.SmartDetectorAlertRuleActionGroupArgs
 *         {
 *             Ids = new[]
 *             {
 *                 exampleActionGroup.Id,
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * 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 {
 * 		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
 * 			Name:     pulumi.String("example-resources"),
 * 			Location: pulumi.String("West Europe"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleInsights, err := appinsights.NewInsights(ctx, "example", &appinsights.InsightsArgs{
 * 			Name:              pulumi.String("example-appinsights"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 			ApplicationType:   pulumi.String("web"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleActionGroup, err := monitoring.NewActionGroup(ctx, "example", &monitoring.ActionGroupArgs{
 * 			Name:              pulumi.String("example-action-group"),
 * 			ResourceGroupName: example.Name,
 * 			ShortName:         pulumi.String("example"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = monitoring.NewSmartDetectorAlertRule(ctx, "example", &monitoring.SmartDetectorAlertRuleArgs{
 * 			Name:              pulumi.String("example-smart-detector-alert-rule"),
 * 			ResourceGroupName: example.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
 * 	})
 * }
 * ```
 * ```java
 * 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("example-resources")
 *             .location("West Europe")
 *             .build());
 *         var exampleInsights = new Insights("exampleInsights", InsightsArgs.builder()
 *             .name("example-appinsights")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .applicationType("web")
 *             .build());
 *         var exampleActionGroup = new ActionGroup("exampleActionGroup", ActionGroupArgs.builder()
 *             .name("example-action-group")
 *             .resourceGroupName(example.name())
 *             .shortName("example")
 *             .build());
 *         var exampleSmartDetectorAlertRule = new SmartDetectorAlertRule("exampleSmartDetectorAlertRule", SmartDetectorAlertRuleArgs.builder()
 *             .name("example-smart-detector-alert-rule")
 *             .resourceGroupName(example.name())
 *             .severity("Sev0")
 *             .scopeResourceIds(exampleInsights.id())
 *             .frequency("PT1M")
 *             .detectorType("FailureAnomaliesDetector")
 *             .actionGroup(SmartDetectorAlertRuleActionGroupArgs.builder()
 *                 .ids(exampleActionGroup.id())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example-resources
 *       location: West Europe
 *   exampleInsights:
 *     type: azure:appinsights:Insights
 *     name: example
 *     properties:
 *       name: example-appinsights
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *       applicationType: web
 *   exampleActionGroup:
 *     type: azure:monitoring:ActionGroup
 *     name: example
 *     properties:
 *       name: example-action-group
 *       resourceGroupName: ${example.name}
 *       shortName: example
 *   exampleSmartDetectorAlertRule:
 *     type: azure:monitoring:SmartDetectorAlertRule
 *     name: example
 *     properties:
 *       name: example-smart-detector-alert-rule
 *       resourceGroupName: ${example.name}
 *       severity: Sev0
 *       scopeResourceIds:
 *         - ${exampleInsights.id}
 *       frequency: PT1M
 *       detectorType: FailureAnomaliesDetector
 *       actionGroup:
 *         ids:
 *           - ${exampleActionGroup.id}
 * ```
 * 
 * ## Import
 * Monitor Smart Detector Alert Rule can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:monitoring/smartDetectorAlertRule:SmartDetectorAlertRule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.AlertsManagement/smartDetectorAlertRules/rule1
 * ```
 */
public class SmartDetectorAlertRule internal constructor(
    override val javaResource: com.pulumi.azure.monitoring.SmartDetectorAlertRule,
) : KotlinCustomResource(javaResource, SmartDetectorAlertRuleMapper) {
    /**
     * An `action_group` block as defined below.
     */
    public val actionGroup: Output
        get() = javaResource.actionGroup().applyValue({ args0 -> args0.let({ args0 -> toKotlin(args0) }) })

    /**
     * Specifies a description for the Smart Detector Alert Rule.
     */
    public val description: Output?
        get() = javaResource.description().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * 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`.
     */
    public val detectorType: Output
        get() = javaResource.detectorType().applyValue({ args0 -> args0 })

    /**
     * Is the Smart Detector Alert Rule enabled? Defaults to `true`.
     */
    public val enabled: Output?
        get() = javaResource.enabled().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * Specifies the frequency of this Smart Detector Alert Rule in ISO8601 format.
     */
    public val frequency: Output
        get() = javaResource.frequency().applyValue({ args0 -> args0 })

    /**
     * Specifies the name of the Monitor Smart Detector Alert Rule. Changing this forces a new resource to be created.
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * 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.
     */
    public val resourceGroupName: Output
        get() = javaResource.resourceGroupName().applyValue({ args0 -> args0 })

    /**
     * Specifies the scopes of this Smart Detector Alert Rule.
     */
    public val scopeResourceIds: Output>
        get() = javaResource.scopeResourceIds().applyValue({ args0 -> args0.map({ args0 -> args0 }) })

    /**
     * Specifies the severity of this Smart Detector Alert Rule. Possible values are `Sev0`, `Sev1`, `Sev2`, `Sev3` or `Sev4`.
     */
    public val severity: Output
        get() = javaResource.severity().applyValue({ args0 -> args0 })

    /**
     * A mapping of tags to assign to the resource.
     */
    public val tags: Output>?
        get() = javaResource.tags().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.key.to(args0.value)
                }).toMap()
            }).orElse(null)
        })

    /**
     * Specifies the duration (in ISO8601 format) to wait before notifying on the alert rule again.
     */
    public val throttlingDuration: Output?
        get() = javaResource.throttlingDuration().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })
}

public object SmartDetectorAlertRuleMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.azure.monitoring.SmartDetectorAlertRule::class == javaResource::class

    override fun map(javaResource: Resource): SmartDetectorAlertRule =
        SmartDetectorAlertRule(javaResource as com.pulumi.azure.monitoring.SmartDetectorAlertRule)
}

/**
 * @see [SmartDetectorAlertRule].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [SmartDetectorAlertRule].
 */
public suspend fun smartDetectorAlertRule(
    name: String,
    block: suspend SmartDetectorAlertRuleResourceBuilder.() -> Unit,
): SmartDetectorAlertRule {
    val builder = SmartDetectorAlertRuleResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [SmartDetectorAlertRule].
 * @param name The _unique_ name of the resulting resource.
 */
public fun smartDetectorAlertRule(name: String): SmartDetectorAlertRule {
    val builder = SmartDetectorAlertRuleResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy