Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azure.appinsights.kotlin.SmartDetectionRule.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appinsights.kotlin
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
/**
* Builder for [SmartDetectionRule].
*/
@PulumiTagMarker
public class SmartDetectionRuleResourceBuilder internal constructor() {
public var name: String? = null
public var args: SmartDetectionRuleArgs = SmartDetectionRuleArgs()
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 SmartDetectionRuleArgsBuilder.() -> Unit) {
val builder = SmartDetectionRuleArgsBuilder()
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(): SmartDetectionRule {
val builtJavaResource = com.pulumi.azure.appinsights.SmartDetectionRule(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return SmartDetectionRule(builtJavaResource)
}
}
/**
* Manages an Application Insights Smart Detection Rule.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "tf-test",
* location: "West Europe",
* });
* const exampleInsights = new azure.appinsights.Insights("example", {
* name: "tf-test-appinsights",
* location: example.location,
* resourceGroupName: example.name,
* applicationType: "web",
* });
* const exampleSmartDetectionRule = new azure.appinsights.SmartDetectionRule("example", {
* name: "Slow server response time",
* applicationInsightsId: exampleInsights.id,
* enabled: false,
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="tf-test",
* location="West Europe")
* example_insights = azure.appinsights.Insights("example",
* name="tf-test-appinsights",
* location=example.location,
* resource_group_name=example.name,
* application_type="web")
* example_smart_detection_rule = azure.appinsights.SmartDetectionRule("example",
* name="Slow server response time",
* application_insights_id=example_insights.id,
* enabled=False)
* ```
* ```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 = "tf-test",
* Location = "West Europe",
* });
* var exampleInsights = new Azure.AppInsights.Insights("example", new()
* {
* Name = "tf-test-appinsights",
* Location = example.Location,
* ResourceGroupName = example.Name,
* ApplicationType = "web",
* });
* var exampleSmartDetectionRule = new Azure.AppInsights.SmartDetectionRule("example", new()
* {
* Name = "Slow server response time",
* ApplicationInsightsId = exampleInsights.Id,
* Enabled = false,
* });
* });
* ```
* ```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/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("tf-test"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* exampleInsights, err := appinsights.NewInsights(ctx, "example", &appinsights.InsightsArgs{
* Name: pulumi.String("tf-test-appinsights"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* ApplicationType: pulumi.String("web"),
* })
* if err != nil {
* return err
* }
* _, err = appinsights.NewSmartDetectionRule(ctx, "example", &appinsights.SmartDetectionRuleArgs{
* Name: pulumi.String("Slow server response time"),
* ApplicationInsightsId: exampleInsights.ID(),
* Enabled: pulumi.Bool(false),
* })
* 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.appinsights.SmartDetectionRule;
* import com.pulumi.azure.appinsights.SmartDetectionRuleArgs;
* 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("tf-test")
* .location("West Europe")
* .build());
* var exampleInsights = new Insights("exampleInsights", InsightsArgs.builder()
* .name("tf-test-appinsights")
* .location(example.location())
* .resourceGroupName(example.name())
* .applicationType("web")
* .build());
* var exampleSmartDetectionRule = new SmartDetectionRule("exampleSmartDetectionRule", SmartDetectionRuleArgs.builder()
* .name("Slow server response time")
* .applicationInsightsId(exampleInsights.id())
* .enabled(false)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: tf-test
* location: West Europe
* exampleInsights:
* type: azure:appinsights:Insights
* name: example
* properties:
* name: tf-test-appinsights
* location: ${example.location}
* resourceGroupName: ${example.name}
* applicationType: web
* exampleSmartDetectionRule:
* type: azure:appinsights:SmartDetectionRule
* name: example
* properties:
* name: Slow server response time
* applicationInsightsId: ${exampleInsights.id}
* enabled: false
* ```
*
* ## Import
* Application Insights Smart Detection Rules can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:appinsights/smartDetectionRule:SmartDetectionRule rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Insights/components/mycomponent1/proactiveDetectionConfigs/myrule1
* ```
*/
public class SmartDetectionRule internal constructor(
override val javaResource: com.pulumi.azure.appinsights.SmartDetectionRule,
) : KotlinCustomResource(javaResource, SmartDetectionRuleMapper) {
/**
* Specifies a list of additional recipients that will be sent emails on this Application Insights Smart Detection Rule.
* > **Note:** At least one read or write permission must be defined.
*/
public val additionalEmailRecipients: Output>?
get() = javaResource.additionalEmailRecipients().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
/**
* The ID of the Application Insights component on which the Smart Detection Rule operates. Changing this forces a new resource to be created.
*/
public val applicationInsightsId: Output
get() = javaResource.applicationInsightsId().applyValue({ args0 -> args0 })
/**
* Is the Application Insights Smart Detection Rule enabled? Defaults to `true`.
*/
public val enabled: Output?
get() = javaResource.enabled().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Specifies the name of the Application Insights Smart Detection Rule. Valid values include `Slow page load time`, `Slow server response time`, `Potential memory leak detected`, `Potential security issue detected`, `Long dependency duration`, `Degradation in server response time`, `Degradation in dependency duration`, `Degradation in trace severity ratio`, `Abnormal rise in exception volume`, `Abnormal rise in daily data volume`. Changing this forces a new resource to be created.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* Do emails get sent to subscription owners? Defaults to `true`.
*/
public val sendEmailsToSubscriptionOwners: Output?
get() = javaResource.sendEmailsToSubscriptionOwners().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
}
public object SmartDetectionRuleMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azure.appinsights.SmartDetectionRule::class == javaResource::class
override fun map(javaResource: Resource): SmartDetectionRule = SmartDetectionRule(
javaResource as
com.pulumi.azure.appinsights.SmartDetectionRule,
)
}
/**
* @see [SmartDetectionRule].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [SmartDetectionRule].
*/
public suspend fun smartDetectionRule(
name: String,
block: suspend SmartDetectionRuleResourceBuilder.() -> Unit,
): SmartDetectionRule {
val builder = SmartDetectionRuleResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [SmartDetectionRule].
* @param name The _unique_ name of the resulting resource.
*/
public fun smartDetectionRule(name: String): SmartDetectionRule {
val builder = SmartDetectionRuleResourceBuilder()
builder.name(name)
return builder.build()
}