com.pulumi.gcp.securitycenter.kotlin.V2ProjectNotificationConfigArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.securitycenter.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.securitycenter.V2ProjectNotificationConfigArgs.builder
import com.pulumi.gcp.securitycenter.kotlin.inputs.V2ProjectNotificationConfigStreamingConfigArgs
import com.pulumi.gcp.securitycenter.kotlin.inputs.V2ProjectNotificationConfigStreamingConfigArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* A Cloud Security Command Center (Cloud SCC) notification configs. A
* notification config is a Cloud SCC resource that contains the
* configuration to send notifications for create/update events of
* findings, assets and etc.
* > **Note:** In order to use Cloud SCC resources, your organization must be enrolled
* in [SCC Standard/Premium](https://cloud.google.com/security-command-center/docs/quickstart-security-command-center).
* Without doing so, you may run into errors during resource creation.
* To get more information about ProjectNotificationConfig, see:
* * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v2/projects.locations.notificationConfigs)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/security-command-center/docs)
* ## Example Usage
* ### Scc V2 Project Notification Config Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const sccV2ProjectNotification = new gcp.pubsub.Topic("scc_v2_project_notification", {name: "my-topic"});
* const customNotificationConfig = new gcp.securitycenter.V2ProjectNotificationConfig("custom_notification_config", {
* configId: "my-config",
* project: "my-project-name",
* location: "global",
* description: "My custom Cloud Security Command Center Finding Notification Configuration",
* pubsubTopic: sccV2ProjectNotification.id,
* streamingConfig: {
* filter: "category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* scc_v2_project_notification = gcp.pubsub.Topic("scc_v2_project_notification", name="my-topic")
* custom_notification_config = gcp.securitycenter.V2ProjectNotificationConfig("custom_notification_config",
* config_id="my-config",
* project="my-project-name",
* location="global",
* description="My custom Cloud Security Command Center Finding Notification Configuration",
* pubsub_topic=scc_v2_project_notification.id,
* streaming_config={
* "filter": "category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var sccV2ProjectNotification = new Gcp.PubSub.Topic("scc_v2_project_notification", new()
* {
* Name = "my-topic",
* });
* var customNotificationConfig = new Gcp.SecurityCenter.V2ProjectNotificationConfig("custom_notification_config", new()
* {
* ConfigId = "my-config",
* Project = "my-project-name",
* Location = "global",
* Description = "My custom Cloud Security Command Center Finding Notification Configuration",
* PubsubTopic = sccV2ProjectNotification.Id,
* StreamingConfig = new Gcp.SecurityCenter.Inputs.V2ProjectNotificationConfigStreamingConfigArgs
* {
* Filter = "category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"",
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/pubsub"
* "github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/securitycenter"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* sccV2ProjectNotification, err := pubsub.NewTopic(ctx, "scc_v2_project_notification", &pubsub.TopicArgs{
* Name: pulumi.String("my-topic"),
* })
* if err != nil {
* return err
* }
* _, err = securitycenter.NewV2ProjectNotificationConfig(ctx, "custom_notification_config", &securitycenter.V2ProjectNotificationConfigArgs{
* ConfigId: pulumi.String("my-config"),
* Project: pulumi.String("my-project-name"),
* Location: pulumi.String("global"),
* Description: pulumi.String("My custom Cloud Security Command Center Finding Notification Configuration"),
* PubsubTopic: sccV2ProjectNotification.ID(),
* StreamingConfig: &securitycenter.V2ProjectNotificationConfigStreamingConfigArgs{
* Filter: pulumi.String("category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\""),
* },
* })
* 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.gcp.pubsub.Topic;
* import com.pulumi.gcp.pubsub.TopicArgs;
* import com.pulumi.gcp.securitycenter.V2ProjectNotificationConfig;
* import com.pulumi.gcp.securitycenter.V2ProjectNotificationConfigArgs;
* import com.pulumi.gcp.securitycenter.inputs.V2ProjectNotificationConfigStreamingConfigArgs;
* 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 sccV2ProjectNotification = new Topic("sccV2ProjectNotification", TopicArgs.builder()
* .name("my-topic")
* .build());
* var customNotificationConfig = new V2ProjectNotificationConfig("customNotificationConfig", V2ProjectNotificationConfigArgs.builder()
* .configId("my-config")
* .project("my-project-name")
* .location("global")
* .description("My custom Cloud Security Command Center Finding Notification Configuration")
* .pubsubTopic(sccV2ProjectNotification.id())
* .streamingConfig(V2ProjectNotificationConfigStreamingConfigArgs.builder()
* .filter("category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"")
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* sccV2ProjectNotification:
* type: gcp:pubsub:Topic
* name: scc_v2_project_notification
* properties:
* name: my-topic
* customNotificationConfig:
* type: gcp:securitycenter:V2ProjectNotificationConfig
* name: custom_notification_config
* properties:
* configId: my-config
* project: my-project-name
* location: global
* description: My custom Cloud Security Command Center Finding Notification Configuration
* pubsubTopic: ${sccV2ProjectNotification.id}
* streamingConfig:
* filter: category = "OPEN_FIREWALL" AND state = "ACTIVE"
* ```
*
* ## Import
* ProjectNotificationConfig can be imported using any of these accepted formats:
* * `projects/{{project}}/locations/{{location}}/notificationConfigs/{{config_id}}`
* * `{{project}}/{{location}}/{{config_id}}`
* * `{{location}}/{{config_id}}`
* When using the `pulumi import` command, ProjectNotificationConfig can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:securitycenter/v2ProjectNotificationConfig:V2ProjectNotificationConfig default projects/{{project}}/locations/{{location}}/notificationConfigs/{{config_id}}
* ```
* ```sh
* $ pulumi import gcp:securitycenter/v2ProjectNotificationConfig:V2ProjectNotificationConfig default {{project}}/{{location}}/{{config_id}}
* ```
* ```sh
* $ pulumi import gcp:securitycenter/v2ProjectNotificationConfig:V2ProjectNotificationConfig default {{location}}/{{config_id}}
* ```
* @property configId This must be unique within the project.
* @property description The description of the notification config (max of 1024 characters).
* @property location Location ID of the parent organization. Only global is supported at the moment.
* @property project
* @property pubsubTopic The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
* @property streamingConfig The config for triggering streaming-based notifications.
* Structure is documented below.
*/
public data class V2ProjectNotificationConfigArgs(
public val configId: Output? = null,
public val description: Output? = null,
public val location: Output? = null,
public val project: Output? = null,
public val pubsubTopic: Output? = null,
public val streamingConfig: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.securitycenter.V2ProjectNotificationConfigArgs =
com.pulumi.gcp.securitycenter.V2ProjectNotificationConfigArgs.builder()
.configId(configId?.applyValue({ args0 -> args0 }))
.description(description?.applyValue({ args0 -> args0 }))
.location(location?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 }))
.pubsubTopic(pubsubTopic?.applyValue({ args0 -> args0 }))
.streamingConfig(
streamingConfig?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [V2ProjectNotificationConfigArgs].
*/
@PulumiTagMarker
public class V2ProjectNotificationConfigArgsBuilder internal constructor() {
private var configId: Output? = null
private var description: Output? = null
private var location: Output? = null
private var project: Output? = null
private var pubsubTopic: Output? = null
private var streamingConfig: Output? = null
/**
* @param value This must be unique within the project.
*/
@JvmName("txnsjbygdgcichcw")
public suspend fun configId(`value`: Output) {
this.configId = value
}
/**
* @param value The description of the notification config (max of 1024 characters).
*/
@JvmName("cdsadwhovxkucrpf")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Location ID of the parent organization. Only global is supported at the moment.
*/
@JvmName("jqyrodxljuadcfsl")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value
*/
@JvmName("awfpkixxljffkfnn")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
*/
@JvmName("wcorgfjltqgnuydn")
public suspend fun pubsubTopic(`value`: Output) {
this.pubsubTopic = value
}
/**
* @param value The config for triggering streaming-based notifications.
* Structure is documented below.
*/
@JvmName("huohktjiakcusuav")
public suspend fun streamingConfig(`value`: Output) {
this.streamingConfig = value
}
/**
* @param value This must be unique within the project.
*/
@JvmName("apdwufjjukhyfnil")
public suspend fun configId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.configId = mapped
}
/**
* @param value The description of the notification config (max of 1024 characters).
*/
@JvmName("spcxxquahofttxqd")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value Location ID of the parent organization. Only global is supported at the moment.
*/
@JvmName("nuxoxtjjubkttkyr")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.location = mapped
}
/**
* @param value
*/
@JvmName("kblbepmeitqpilae")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
/**
* @param value The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
*/
@JvmName("masxqhertqmkhjtu")
public suspend fun pubsubTopic(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.pubsubTopic = mapped
}
/**
* @param value The config for triggering streaming-based notifications.
* Structure is documented below.
*/
@JvmName("mehaegtgnipimxsk")
public suspend fun streamingConfig(`value`: V2ProjectNotificationConfigStreamingConfigArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.streamingConfig = mapped
}
/**
* @param argument The config for triggering streaming-based notifications.
* Structure is documented below.
*/
@JvmName("vvammhpypnqhipwa")
public suspend fun streamingConfig(argument: suspend V2ProjectNotificationConfigStreamingConfigArgsBuilder.() -> Unit) {
val toBeMapped = V2ProjectNotificationConfigStreamingConfigArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.streamingConfig = mapped
}
internal fun build(): V2ProjectNotificationConfigArgs = V2ProjectNotificationConfigArgs(
configId = configId,
description = description,
location = location,
project = project,
pubsubTopic = pubsubTopic,
streamingConfig = streamingConfig,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy