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.WatchlistItem.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.sentinel.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.Map
/**
* Builder for [WatchlistItem].
*/
@PulumiTagMarker
public class WatchlistItemResourceBuilder internal constructor() {
public var name: String? = null
public var args: WatchlistItemArgs = WatchlistItemArgs()
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 WatchlistItemArgsBuilder.() -> Unit) {
val builder = WatchlistItemArgsBuilder()
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(): WatchlistItem {
val builtJavaResource = com.pulumi.azure.sentinel.WatchlistItem(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return WatchlistItem(builtJavaResource)
}
}
/**
* Manages a Sentinel Watchlist Item.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "example-rg",
* location: "West Europe",
* });
* const exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", {
* name: "example-workspace",
* location: example.location,
* resourceGroupName: example.name,
* sku: "PerGB2018",
* });
* const exampleLogAnalyticsWorkspaceOnboarding = new azure.sentinel.LogAnalyticsWorkspaceOnboarding("example", {workspaceId: exampleAnalyticsWorkspace.id});
* const exampleWatchlist = new azure.sentinel.Watchlist("example", {
* name: "example-watchlist",
* logAnalyticsWorkspaceId: exampleLogAnalyticsWorkspaceOnboarding.workspaceId,
* displayName: "example-wl",
* itemSearchKey: "Key",
* });
* const exampleWatchlistItem = new azure.sentinel.WatchlistItem("example", {
* name: "0aac6fa5-223e-49cf-9bfd-3554dc9d2b76",
* watchlistId: exampleWatchlist.id,
* properties: {
* k1: "v1",
* k2: "v2",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="example-rg",
* location="West Europe")
* example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("example",
* name="example-workspace",
* location=example.location,
* resource_group_name=example.name,
* sku="PerGB2018")
* example_log_analytics_workspace_onboarding = azure.sentinel.LogAnalyticsWorkspaceOnboarding("example", workspace_id=example_analytics_workspace.id)
* example_watchlist = azure.sentinel.Watchlist("example",
* name="example-watchlist",
* log_analytics_workspace_id=example_log_analytics_workspace_onboarding.workspace_id,
* display_name="example-wl",
* item_search_key="Key")
* example_watchlist_item = azure.sentinel.WatchlistItem("example",
* name="0aac6fa5-223e-49cf-9bfd-3554dc9d2b76",
* watchlist_id=example_watchlist.id,
* properties={
* "k1": "v1",
* "k2": "v2",
* })
* ```
* ```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-rg",
* Location = "West Europe",
* });
* var exampleAnalyticsWorkspace = new Azure.OperationalInsights.AnalyticsWorkspace("example", new()
* {
* Name = "example-workspace",
* Location = example.Location,
* ResourceGroupName = example.Name,
* Sku = "PerGB2018",
* });
* var exampleLogAnalyticsWorkspaceOnboarding = new Azure.Sentinel.LogAnalyticsWorkspaceOnboarding("example", new()
* {
* WorkspaceId = exampleAnalyticsWorkspace.Id,
* });
* var exampleWatchlist = new Azure.Sentinel.Watchlist("example", new()
* {
* Name = "example-watchlist",
* LogAnalyticsWorkspaceId = exampleLogAnalyticsWorkspaceOnboarding.WorkspaceId,
* DisplayName = "example-wl",
* ItemSearchKey = "Key",
* });
* var exampleWatchlistItem = new Azure.Sentinel.WatchlistItem("example", new()
* {
* Name = "0aac6fa5-223e-49cf-9bfd-3554dc9d2b76",
* WatchlistId = exampleWatchlist.Id,
* Properties =
* {
* { "k1", "v1" },
* { "k2", "v2" },
* },
* });
* });
* ```
* ```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 {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("example-rg"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* exampleAnalyticsWorkspace, err := operationalinsights.NewAnalyticsWorkspace(ctx, "example", &operationalinsights.AnalyticsWorkspaceArgs{
* Name: pulumi.String("example-workspace"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* Sku: pulumi.String("PerGB2018"),
* })
* if err != nil {
* return err
* }
* exampleLogAnalyticsWorkspaceOnboarding, err := sentinel.NewLogAnalyticsWorkspaceOnboarding(ctx, "example", &sentinel.LogAnalyticsWorkspaceOnboardingArgs{
* WorkspaceId: exampleAnalyticsWorkspace.ID(),
* })
* if err != nil {
* return err
* }
* exampleWatchlist, err := sentinel.NewWatchlist(ctx, "example", &sentinel.WatchlistArgs{
* Name: pulumi.String("example-watchlist"),
* LogAnalyticsWorkspaceId: exampleLogAnalyticsWorkspaceOnboarding.WorkspaceId,
* DisplayName: pulumi.String("example-wl"),
* ItemSearchKey: pulumi.String("Key"),
* })
* if err != nil {
* return err
* }
* _, err = sentinel.NewWatchlistItem(ctx, "example", &sentinel.WatchlistItemArgs{
* Name: pulumi.String("0aac6fa5-223e-49cf-9bfd-3554dc9d2b76"),
* WatchlistId: exampleWatchlist.ID(),
* Properties: pulumi.StringMap{
* "k1": pulumi.String("v1"),
* "k2": pulumi.String("v2"),
* },
* })
* 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.Watchlist;
* import com.pulumi.azure.sentinel.WatchlistArgs;
* import com.pulumi.azure.sentinel.WatchlistItem;
* import com.pulumi.azure.sentinel.WatchlistItemArgs;
* 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-rg")
* .location("West Europe")
* .build());
* var exampleAnalyticsWorkspace = new AnalyticsWorkspace("exampleAnalyticsWorkspace", AnalyticsWorkspaceArgs.builder()
* .name("example-workspace")
* .location(example.location())
* .resourceGroupName(example.name())
* .sku("PerGB2018")
* .build());
* var exampleLogAnalyticsWorkspaceOnboarding = new LogAnalyticsWorkspaceOnboarding("exampleLogAnalyticsWorkspaceOnboarding", LogAnalyticsWorkspaceOnboardingArgs.builder()
* .workspaceId(exampleAnalyticsWorkspace.id())
* .build());
* var exampleWatchlist = new Watchlist("exampleWatchlist", WatchlistArgs.builder()
* .name("example-watchlist")
* .logAnalyticsWorkspaceId(exampleLogAnalyticsWorkspaceOnboarding.workspaceId())
* .displayName("example-wl")
* .itemSearchKey("Key")
* .build());
* var exampleWatchlistItem = new WatchlistItem("exampleWatchlistItem", WatchlistItemArgs.builder()
* .name("0aac6fa5-223e-49cf-9bfd-3554dc9d2b76")
* .watchlistId(exampleWatchlist.id())
* .properties(Map.ofEntries(
* Map.entry("k1", "v1"),
* Map.entry("k2", "v2")
* ))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-rg
* location: West Europe
* exampleAnalyticsWorkspace:
* type: azure:operationalinsights:AnalyticsWorkspace
* name: example
* properties:
* name: example-workspace
* location: ${example.location}
* resourceGroupName: ${example.name}
* sku: PerGB2018
* exampleLogAnalyticsWorkspaceOnboarding:
* type: azure:sentinel:LogAnalyticsWorkspaceOnboarding
* name: example
* properties:
* workspaceId: ${exampleAnalyticsWorkspace.id}
* exampleWatchlist:
* type: azure:sentinel:Watchlist
* name: example
* properties:
* name: example-watchlist
* logAnalyticsWorkspaceId: ${exampleLogAnalyticsWorkspaceOnboarding.workspaceId}
* displayName: example-wl
* itemSearchKey: Key
* exampleWatchlistItem:
* type: azure:sentinel:WatchlistItem
* name: example
* properties:
* name: 0aac6fa5-223e-49cf-9bfd-3554dc9d2b76
* watchlistId: ${exampleWatchlist.id}
* properties:
* k1: v1
* k2: v2
* ```
*
* ## Import
* Sentinel Watchlist Items can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:sentinel/watchlistItem:WatchlistItem example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.OperationalInsights/workspaces/workspace1/providers/Microsoft.SecurityInsights/watchlists/list1/watchlistItems/item1
* ```
*/
public class WatchlistItem internal constructor(
override val javaResource: com.pulumi.azure.sentinel.WatchlistItem,
) : KotlinCustomResource(javaResource, WatchlistItemMapper) {
/**
* The name in UUID format which should be used for this Sentinel Watchlist Item. Changing this forces a new Sentinel Watchlist Item to be created.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The key value pairs of the Sentinel Watchlist Item.
*/
public val properties: Output>
get() = javaResource.properties().applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
})
/**
* The ID of the Sentinel Watchlist that this Item resides in. Changing this forces a new Sentinel Watchlist Item to be created.
*/
public val watchlistId: Output
get() = javaResource.watchlistId().applyValue({ args0 -> args0 })
}
public object WatchlistItemMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azure.sentinel.WatchlistItem::class == javaResource::class
override fun map(javaResource: Resource): WatchlistItem = WatchlistItem(
javaResource as
com.pulumi.azure.sentinel.WatchlistItem,
)
}
/**
* @see [WatchlistItem].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [WatchlistItem].
*/
public suspend fun watchlistItem(
name: String,
block: suspend WatchlistItemResourceBuilder.() -> Unit,
): WatchlistItem {
val builder = WatchlistItemResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [WatchlistItem].
* @param name The _unique_ name of the resulting resource.
*/
public fun watchlistItem(name: String): WatchlistItem {
val builder = WatchlistItemResourceBuilder()
builder.name(name)
return builder.build()
}