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.loganalytics.kotlin.DataExportRuleArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.loganalytics.kotlin
import com.pulumi.azure.loganalytics.DataExportRuleArgs.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.collections.List
import kotlin.jvm.JvmName
/**
* Manages a Log Analytics Data Export 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 exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", {
* name: "exampleworkspace",
* location: example.location,
* resourceGroupName: example.name,
* sku: "PerGB2018",
* retentionInDays: 30,
* });
* const exampleAccount = new azure.storage.Account("example", {
* name: "examplestoracc",
* resourceGroupName: example.name,
* location: example.location,
* accountTier: "Standard",
* accountReplicationType: "LRS",
* });
* const exampleDataExportRule = new azure.loganalytics.DataExportRule("example", {
* name: "dataExport1",
* resourceGroupName: example.name,
* workspaceResourceId: exampleAnalyticsWorkspace.id,
* destinationResourceId: exampleAccount.id,
* tableNames: ["Heartbeat"],
* enabled: true,
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="example-resources",
* location="West Europe")
* example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("example",
* name="exampleworkspace",
* location=example.location,
* resource_group_name=example.name,
* sku="PerGB2018",
* retention_in_days=30)
* example_account = azure.storage.Account("example",
* name="examplestoracc",
* resource_group_name=example.name,
* location=example.location,
* account_tier="Standard",
* account_replication_type="LRS")
* example_data_export_rule = azure.loganalytics.DataExportRule("example",
* name="dataExport1",
* resource_group_name=example.name,
* workspace_resource_id=example_analytics_workspace.id,
* destination_resource_id=example_account.id,
* table_names=["Heartbeat"],
* enabled=True)
* ```
* ```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 exampleAnalyticsWorkspace = new Azure.OperationalInsights.AnalyticsWorkspace("example", new()
* {
* Name = "exampleworkspace",
* Location = example.Location,
* ResourceGroupName = example.Name,
* Sku = "PerGB2018",
* RetentionInDays = 30,
* });
* var exampleAccount = new Azure.Storage.Account("example", new()
* {
* Name = "examplestoracc",
* ResourceGroupName = example.Name,
* Location = example.Location,
* AccountTier = "Standard",
* AccountReplicationType = "LRS",
* });
* var exampleDataExportRule = new Azure.LogAnalytics.DataExportRule("example", new()
* {
* Name = "dataExport1",
* ResourceGroupName = example.Name,
* WorkspaceResourceId = exampleAnalyticsWorkspace.Id,
* DestinationResourceId = exampleAccount.Id,
* TableNames = new[]
* {
* "Heartbeat",
* },
* Enabled = true,
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/loganalytics"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/operationalinsights"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
* "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
* }
* exampleAnalyticsWorkspace, err := operationalinsights.NewAnalyticsWorkspace(ctx, "example", &operationalinsights.AnalyticsWorkspaceArgs{
* Name: pulumi.String("exampleworkspace"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* Sku: pulumi.String("PerGB2018"),
* RetentionInDays: pulumi.Int(30),
* })
* if err != nil {
* return err
* }
* exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
* Name: pulumi.String("examplestoracc"),
* ResourceGroupName: example.Name,
* Location: example.Location,
* AccountTier: pulumi.String("Standard"),
* AccountReplicationType: pulumi.String("LRS"),
* })
* if err != nil {
* return err
* }
* _, err = loganalytics.NewDataExportRule(ctx, "example", &loganalytics.DataExportRuleArgs{
* Name: pulumi.String("dataExport1"),
* ResourceGroupName: example.Name,
* WorkspaceResourceId: exampleAnalyticsWorkspace.ID(),
* DestinationResourceId: exampleAccount.ID(),
* TableNames: pulumi.StringArray{
* pulumi.String("Heartbeat"),
* },
* Enabled: pulumi.Bool(true),
* })
* 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.storage.Account;
* import com.pulumi.azure.storage.AccountArgs;
* import com.pulumi.azure.loganalytics.DataExportRule;
* import com.pulumi.azure.loganalytics.DataExportRuleArgs;
* 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 exampleAnalyticsWorkspace = new AnalyticsWorkspace("exampleAnalyticsWorkspace", AnalyticsWorkspaceArgs.builder()
* .name("exampleworkspace")
* .location(example.location())
* .resourceGroupName(example.name())
* .sku("PerGB2018")
* .retentionInDays(30)
* .build());
* var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
* .name("examplestoracc")
* .resourceGroupName(example.name())
* .location(example.location())
* .accountTier("Standard")
* .accountReplicationType("LRS")
* .build());
* var exampleDataExportRule = new DataExportRule("exampleDataExportRule", DataExportRuleArgs.builder()
* .name("dataExport1")
* .resourceGroupName(example.name())
* .workspaceResourceId(exampleAnalyticsWorkspace.id())
* .destinationResourceId(exampleAccount.id())
* .tableNames("Heartbeat")
* .enabled(true)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-resources
* location: West Europe
* exampleAnalyticsWorkspace:
* type: azure:operationalinsights:AnalyticsWorkspace
* name: example
* properties:
* name: exampleworkspace
* location: ${example.location}
* resourceGroupName: ${example.name}
* sku: PerGB2018
* retentionInDays: 30
* exampleAccount:
* type: azure:storage:Account
* name: example
* properties:
* name: examplestoracc
* resourceGroupName: ${example.name}
* location: ${example.location}
* accountTier: Standard
* accountReplicationType: LRS
* exampleDataExportRule:
* type: azure:loganalytics:DataExportRule
* name: example
* properties:
* name: dataExport1
* resourceGroupName: ${example.name}
* workspaceResourceId: ${exampleAnalyticsWorkspace.id}
* destinationResourceId: ${exampleAccount.id}
* tableNames:
* - Heartbeat
* enabled: true
* ```
*
* ## Import
* Log Analytics Data Export Rule can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:loganalytics/dataExportRule:DataExportRule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.OperationalInsights/workspaces/workspace1/dataExports/dataExport1
* ```
* @property destinationResourceId The destination resource ID. It should be a storage account, an event hub namespace or an event hub. If the destination is an event hub namespace, an event hub would be created for each table automatically.
* @property enabled Is this Log Analytics Data Export Rule enabled? Possible values include `true` or `false`. Defaults to `false`.
* @property name The name of the Log Analytics Data Export Rule. Changing this forces a new Log Analytics Data Export Rule to be created.
* @property resourceGroupName The name of the Resource Group where the Log Analytics Data Export should exist. Changing this forces a new Log Analytics Data Export Rule to be created.
* @property tableNames A list of table names to export to the destination resource, for example: `["Heartbeat", "SecurityEvent"]`.
* @property workspaceResourceId The resource ID of the workspace. Changing this forces a new Log Analytics Data Export Rule to be created.
*/
public data class DataExportRuleArgs(
public val destinationResourceId: Output? = null,
public val enabled: Output? = null,
public val name: Output? = null,
public val resourceGroupName: Output? = null,
public val tableNames: Output>? = null,
public val workspaceResourceId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.loganalytics.DataExportRuleArgs =
com.pulumi.azure.loganalytics.DataExportRuleArgs.builder()
.destinationResourceId(destinationResourceId?.applyValue({ args0 -> args0 }))
.enabled(enabled?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.tableNames(tableNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.workspaceResourceId(workspaceResourceId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DataExportRuleArgs].
*/
@PulumiTagMarker
public class DataExportRuleArgsBuilder internal constructor() {
private var destinationResourceId: Output? = null
private var enabled: Output? = null
private var name: Output? = null
private var resourceGroupName: Output? = null
private var tableNames: Output>? = null
private var workspaceResourceId: Output? = null
/**
* @param value The destination resource ID. It should be a storage account, an event hub namespace or an event hub. If the destination is an event hub namespace, an event hub would be created for each table automatically.
*/
@JvmName("kypuluhnrivdyred")
public suspend fun destinationResourceId(`value`: Output) {
this.destinationResourceId = value
}
/**
* @param value Is this Log Analytics Data Export Rule enabled? Possible values include `true` or `false`. Defaults to `false`.
*/
@JvmName("xxnqoprufradilkm")
public suspend fun enabled(`value`: Output) {
this.enabled = value
}
/**
* @param value The name of the Log Analytics Data Export Rule. Changing this forces a new Log Analytics Data Export Rule to be created.
*/
@JvmName("fcbvbktxlcruhcfk")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The name of the Resource Group where the Log Analytics Data Export should exist. Changing this forces a new Log Analytics Data Export Rule to be created.
*/
@JvmName("jepkgmfsaaeoibxl")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value A list of table names to export to the destination resource, for example: `["Heartbeat", "SecurityEvent"]`.
*/
@JvmName("pikjvlblexlrwmdt")
public suspend fun tableNames(`value`: Output>) {
this.tableNames = value
}
@JvmName("ataguyfbhdwgdilg")
public suspend fun tableNames(vararg values: Output) {
this.tableNames = Output.all(values.asList())
}
/**
* @param values A list of table names to export to the destination resource, for example: `["Heartbeat", "SecurityEvent"]`.
*/
@JvmName("vhuefgnndnmapapc")
public suspend fun tableNames(values: List>) {
this.tableNames = Output.all(values)
}
/**
* @param value The resource ID of the workspace. Changing this forces a new Log Analytics Data Export Rule to be created.
*/
@JvmName("yqgvowrolrluktgk")
public suspend fun workspaceResourceId(`value`: Output) {
this.workspaceResourceId = value
}
/**
* @param value The destination resource ID. It should be a storage account, an event hub namespace or an event hub. If the destination is an event hub namespace, an event hub would be created for each table automatically.
*/
@JvmName("cctrvpslluieckwf")
public suspend fun destinationResourceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.destinationResourceId = mapped
}
/**
* @param value Is this Log Analytics Data Export Rule enabled? Possible values include `true` or `false`. Defaults to `false`.
*/
@JvmName("cdghcgmdosbecsdk")
public suspend fun enabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.enabled = mapped
}
/**
* @param value The name of the Log Analytics Data Export Rule. Changing this forces a new Log Analytics Data Export Rule to be created.
*/
@JvmName("xljofgshjqqlqtpg")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The name of the Resource Group where the Log Analytics Data Export should exist. Changing this forces a new Log Analytics Data Export Rule to be created.
*/
@JvmName("xlxfxaxmayblcljx")
public suspend fun resourceGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceGroupName = mapped
}
/**
* @param value A list of table names to export to the destination resource, for example: `["Heartbeat", "SecurityEvent"]`.
*/
@JvmName("tihleenarculianj")
public suspend fun tableNames(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tableNames = mapped
}
/**
* @param values A list of table names to export to the destination resource, for example: `["Heartbeat", "SecurityEvent"]`.
*/
@JvmName("nyxyscnittjbqaxk")
public suspend fun tableNames(vararg values: String) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.tableNames = mapped
}
/**
* @param value The resource ID of the workspace. Changing this forces a new Log Analytics Data Export Rule to be created.
*/
@JvmName("nnohmnjnkjubjxqg")
public suspend fun workspaceResourceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.workspaceResourceId = mapped
}
internal fun build(): DataExportRuleArgs = DataExportRuleArgs(
destinationResourceId = destinationResourceId,
enabled = enabled,
name = name,
resourceGroupName = resourceGroupName,
tableNames = tableNames,
workspaceResourceId = workspaceResourceId,
)
}