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.sentinel.kotlin.AlertRuleAnomalyBuiltInArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.sentinel.kotlin
import com.pulumi.azure.sentinel.AlertRuleAnomalyBuiltInArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const exampleResourceGroup = new azure.core.ResourceGroup("example", {
* name: "example-resources",
* location: "West Europe",
* });
* const exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", {
* name: "example-law",
* location: exampleResourceGroup.location,
* resourceGroupName: exampleResourceGroup.name,
* sku: "PerGB2018",
* });
* const exampleLogAnalyticsWorkspaceOnboarding = new azure.sentinel.LogAnalyticsWorkspaceOnboarding("example", {
* workspaceId: exampleAnalyticsWorkspace.id,
* customerManagedKeyEnabled: false,
* });
* const example = azure.sentinel.getAlertRuleAnomalyOutput({
* logAnalyticsWorkspaceId: exampleLogAnalyticsWorkspaceOnboarding.workspaceId,
* displayName: "Potential data staging",
* });
* const exampleAlertRuleAnomalyBuiltIn = new azure.sentinel.AlertRuleAnomalyBuiltIn("example", {
* displayName: "Potential data staging",
* logAnalyticsWorkspaceId: exampleAnalyticsWorkspace.id,
* mode: "Production",
* enabled: false,
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example_resource_group = azure.core.ResourceGroup("example",
* name="example-resources",
* location="West Europe")
* example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("example",
* name="example-law",
* location=example_resource_group.location,
* resource_group_name=example_resource_group.name,
* sku="PerGB2018")
* example_log_analytics_workspace_onboarding = azure.sentinel.LogAnalyticsWorkspaceOnboarding("example",
* workspace_id=example_analytics_workspace.id,
* customer_managed_key_enabled=False)
* example = azure.sentinel.get_alert_rule_anomaly_output(log_analytics_workspace_id=example_log_analytics_workspace_onboarding.workspace_id,
* display_name="Potential data staging")
* example_alert_rule_anomaly_built_in = azure.sentinel.AlertRuleAnomalyBuiltIn("example",
* display_name="Potential data staging",
* log_analytics_workspace_id=example_analytics_workspace.id,
* mode="Production",
* enabled=False)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var exampleResourceGroup = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "example-resources",
* Location = "West Europe",
* });
* var exampleAnalyticsWorkspace = new Azure.OperationalInsights.AnalyticsWorkspace("example", new()
* {
* Name = "example-law",
* Location = exampleResourceGroup.Location,
* ResourceGroupName = exampleResourceGroup.Name,
* Sku = "PerGB2018",
* });
* var exampleLogAnalyticsWorkspaceOnboarding = new Azure.Sentinel.LogAnalyticsWorkspaceOnboarding("example", new()
* {
* WorkspaceId = exampleAnalyticsWorkspace.Id,
* CustomerManagedKeyEnabled = false,
* });
* var example = Azure.Sentinel.GetAlertRuleAnomaly.Invoke(new()
* {
* LogAnalyticsWorkspaceId = exampleLogAnalyticsWorkspaceOnboarding.WorkspaceId,
* DisplayName = "Potential data staging",
* });
* var exampleAlertRuleAnomalyBuiltIn = new Azure.Sentinel.AlertRuleAnomalyBuiltIn("example", new()
* {
* DisplayName = "Potential data staging",
* LogAnalyticsWorkspaceId = exampleAnalyticsWorkspace.Id,
* Mode = "Production",
* Enabled = false,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/operationalinsights"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/sentinel"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* exampleResourceGroup, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("example-resources"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* exampleAnalyticsWorkspace, err := operationalinsights.NewAnalyticsWorkspace(ctx, "example", &operationalinsights.AnalyticsWorkspaceArgs{
* Name: pulumi.String("example-law"),
* Location: exampleResourceGroup.Location,
* ResourceGroupName: exampleResourceGroup.Name,
* Sku: pulumi.String("PerGB2018"),
* })
* if err != nil {
* return err
* }
* exampleLogAnalyticsWorkspaceOnboarding, err := sentinel.NewLogAnalyticsWorkspaceOnboarding(ctx, "example", &sentinel.LogAnalyticsWorkspaceOnboardingArgs{
* WorkspaceId: exampleAnalyticsWorkspace.ID(),
* CustomerManagedKeyEnabled: pulumi.Bool(false),
* })
* if err != nil {
* return err
* }
* _ = sentinel.GetAlertRuleAnomalyOutput(ctx, sentinel.GetAlertRuleAnomalyOutputArgs{
* LogAnalyticsWorkspaceId: exampleLogAnalyticsWorkspaceOnboarding.WorkspaceId,
* DisplayName: pulumi.String("Potential data staging"),
* }, nil)
* _, err = sentinel.NewAlertRuleAnomalyBuiltIn(ctx, "example", &sentinel.AlertRuleAnomalyBuiltInArgs{
* DisplayName: pulumi.String("Potential data staging"),
* LogAnalyticsWorkspaceId: exampleAnalyticsWorkspace.ID(),
* Mode: pulumi.String("Production"),
* 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.operationalinsights.AnalyticsWorkspace;
* import com.pulumi.azure.operationalinsights.AnalyticsWorkspaceArgs;
* import com.pulumi.azure.sentinel.LogAnalyticsWorkspaceOnboarding;
* import com.pulumi.azure.sentinel.LogAnalyticsWorkspaceOnboardingArgs;
* import com.pulumi.azure.sentinel.SentinelFunctions;
* import com.pulumi.azure.sentinel.inputs.GetAlertRuleAnomalyArgs;
* import com.pulumi.azure.sentinel.AlertRuleAnomalyBuiltIn;
* import com.pulumi.azure.sentinel.AlertRuleAnomalyBuiltInArgs;
* 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()
* .name("example-resources")
* .location("West Europe")
* .build());
* var exampleAnalyticsWorkspace = new AnalyticsWorkspace("exampleAnalyticsWorkspace", AnalyticsWorkspaceArgs.builder()
* .name("example-law")
* .location(exampleResourceGroup.location())
* .resourceGroupName(exampleResourceGroup.name())
* .sku("PerGB2018")
* .build());
* var exampleLogAnalyticsWorkspaceOnboarding = new LogAnalyticsWorkspaceOnboarding("exampleLogAnalyticsWorkspaceOnboarding", LogAnalyticsWorkspaceOnboardingArgs.builder()
* .workspaceId(exampleAnalyticsWorkspace.id())
* .customerManagedKeyEnabled(false)
* .build());
* final var example = SentinelFunctions.getAlertRuleAnomaly(GetAlertRuleAnomalyArgs.builder()
* .logAnalyticsWorkspaceId(exampleLogAnalyticsWorkspaceOnboarding.workspaceId())
* .displayName("Potential data staging")
* .build());
* var exampleAlertRuleAnomalyBuiltIn = new AlertRuleAnomalyBuiltIn("exampleAlertRuleAnomalyBuiltIn", AlertRuleAnomalyBuiltInArgs.builder()
* .displayName("Potential data staging")
* .logAnalyticsWorkspaceId(exampleAnalyticsWorkspace.id())
* .mode("Production")
* .enabled(false)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* exampleResourceGroup:
* type: azure:core:ResourceGroup
* name: example
* properties:
* name: example-resources
* location: West Europe
* exampleAnalyticsWorkspace:
* type: azure:operationalinsights:AnalyticsWorkspace
* name: example
* properties:
* name: example-law
* location: ${exampleResourceGroup.location}
* resourceGroupName: ${exampleResourceGroup.name}
* sku: PerGB2018
* exampleLogAnalyticsWorkspaceOnboarding:
* type: azure:sentinel:LogAnalyticsWorkspaceOnboarding
* name: example
* properties:
* workspaceId: ${exampleAnalyticsWorkspace.id}
* customerManagedKeyEnabled: false
* exampleAlertRuleAnomalyBuiltIn:
* type: azure:sentinel:AlertRuleAnomalyBuiltIn
* name: example
* properties:
* displayName: Potential data staging
* logAnalyticsWorkspaceId: ${exampleAnalyticsWorkspace.id}
* mode: Production
* enabled: false
* variables:
* example:
* fn::invoke:
* Function: azure:sentinel:getAlertRuleAnomaly
* Arguments:
* logAnalyticsWorkspaceId: ${exampleLogAnalyticsWorkspaceOnboarding.workspaceId}
* displayName: Potential data staging
* ```
*
* ## Import
* Built In Anomaly Alert Rules can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:sentinel/alertRuleAnomalyBuiltIn:AlertRuleAnomalyBuiltIn example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.OperationalInsights/workspaces/workspace1/providers/Microsoft.SecurityInsights/securityMLAnalyticsSettings/setting1
* ```
* @property displayName The Display Name of the built-in Anomaly Alert Rule.
* > **Note:** One of `name` or `display_name` block must be specified.
* @property enabled Should the Built-in Anomaly Alert Rule be enabled?
* @property logAnalyticsWorkspaceId The ID of the Log Analytics Workspace. Changing this forces a new Built-in Anomaly Alert Rule to be created.
* @property mode mode of the Built-in Anomaly Alert Rule. Possible Values are `Production` and `Flighting`.
* @property name The Name of the built-in Anomaly Alert Rule.
*/
public data class AlertRuleAnomalyBuiltInArgs(
public val displayName: Output? = null,
public val enabled: Output? = null,
public val logAnalyticsWorkspaceId: Output? = null,
public val mode: Output? = null,
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.sentinel.AlertRuleAnomalyBuiltInArgs =
com.pulumi.azure.sentinel.AlertRuleAnomalyBuiltInArgs.builder()
.displayName(displayName?.applyValue({ args0 -> args0 }))
.enabled(enabled?.applyValue({ args0 -> args0 }))
.logAnalyticsWorkspaceId(logAnalyticsWorkspaceId?.applyValue({ args0 -> args0 }))
.mode(mode?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AlertRuleAnomalyBuiltInArgs].
*/
@PulumiTagMarker
public class AlertRuleAnomalyBuiltInArgsBuilder internal constructor() {
private var displayName: Output? = null
private var enabled: Output? = null
private var logAnalyticsWorkspaceId: Output? = null
private var mode: Output? = null
private var name: Output? = null
/**
* @param value The Display Name of the built-in Anomaly Alert Rule.
* > **Note:** One of `name` or `display_name` block must be specified.
*/
@JvmName("ideeqmygntcybqrb")
public suspend fun displayName(`value`: Output) {
this.displayName = value
}
/**
* @param value Should the Built-in Anomaly Alert Rule be enabled?
*/
@JvmName("yvvbhtqiuqmhdehd")
public suspend fun enabled(`value`: Output) {
this.enabled = value
}
/**
* @param value The ID of the Log Analytics Workspace. Changing this forces a new Built-in Anomaly Alert Rule to be created.
*/
@JvmName("ycqppwerdpminfkf")
public suspend fun logAnalyticsWorkspaceId(`value`: Output) {
this.logAnalyticsWorkspaceId = value
}
/**
* @param value mode of the Built-in Anomaly Alert Rule. Possible Values are `Production` and `Flighting`.
*/
@JvmName("hpbhbrsvraghuxvq")
public suspend fun mode(`value`: Output) {
this.mode = value
}
/**
* @param value The Name of the built-in Anomaly Alert Rule.
*/
@JvmName("bevermaytjipjpih")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The Display Name of the built-in Anomaly Alert Rule.
* > **Note:** One of `name` or `display_name` block must be specified.
*/
@JvmName("tmvtwmevwxmsigch")
public suspend fun displayName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.displayName = mapped
}
/**
* @param value Should the Built-in Anomaly Alert Rule be enabled?
*/
@JvmName("rjibaiorfwkylucr")
public suspend fun enabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.enabled = mapped
}
/**
* @param value The ID of the Log Analytics Workspace. Changing this forces a new Built-in Anomaly Alert Rule to be created.
*/
@JvmName("mertwyrdfcngmjis")
public suspend fun logAnalyticsWorkspaceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.logAnalyticsWorkspaceId = mapped
}
/**
* @param value mode of the Built-in Anomaly Alert Rule. Possible Values are `Production` and `Flighting`.
*/
@JvmName("wnnkqabbyjhtuoyh")
public suspend fun mode(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.mode = mapped
}
/**
* @param value The Name of the built-in Anomaly Alert Rule.
*/
@JvmName("ycuhgacptpvjsgqn")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): AlertRuleAnomalyBuiltInArgs = AlertRuleAnomalyBuiltInArgs(
displayName = displayName,
enabled = enabled,
logAnalyticsWorkspaceId = logAnalyticsWorkspaceId,
mode = mode,
name = name,
)
}