All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.securitycenter.kotlin.V2OrganizationNotificationConfigArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.13.1.0
Show newest version
@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.V2OrganizationNotificationConfigArgs.builder
import com.pulumi.gcp.securitycenter.kotlin.inputs.V2OrganizationNotificationConfigStreamingConfigArgs
import com.pulumi.gcp.securitycenter.kotlin.inputs.V2OrganizationNotificationConfigStreamingConfigArgsBuilder
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 OrganizationNotificationConfig, see:
 * * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v2/organizations.locations.notificationConfigs)
 * * How-to Guides
 *     * [Official Documentation](https://cloud.google.com/security-command-center/docs)
 * ## Example Usage
 * ### Scc V2 Organization Notification Config Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const sccV2OrganizationNotificationConfig = new gcp.pubsub.Topic("scc_v2_organization_notification_config", {name: "my-topic"});
 * const customOrganizationNotificationConfig = new gcp.securitycenter.V2OrganizationNotificationConfig("custom_organization_notification_config", {
 *     configId: "my-config",
 *     organization: "123456789",
 *     location: "global",
 *     description: "My custom Cloud Security Command Center Finding Organization Notification Configuration",
 *     pubsubTopic: sccV2OrganizationNotificationConfig.id,
 *     streamingConfig: {
 *         filter: "category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * scc_v2_organization_notification_config = gcp.pubsub.Topic("scc_v2_organization_notification_config", name="my-topic")
 * custom_organization_notification_config = gcp.securitycenter.V2OrganizationNotificationConfig("custom_organization_notification_config",
 *     config_id="my-config",
 *     organization="123456789",
 *     location="global",
 *     description="My custom Cloud Security Command Center Finding Organization Notification Configuration",
 *     pubsub_topic=scc_v2_organization_notification_config.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 sccV2OrganizationNotificationConfig = new Gcp.PubSub.Topic("scc_v2_organization_notification_config", new()
 *     {
 *         Name = "my-topic",
 *     });
 *     var customOrganizationNotificationConfig = new Gcp.SecurityCenter.V2OrganizationNotificationConfig("custom_organization_notification_config", new()
 *     {
 *         ConfigId = "my-config",
 *         Organization = "123456789",
 *         Location = "global",
 *         Description = "My custom Cloud Security Command Center Finding Organization Notification Configuration",
 *         PubsubTopic = sccV2OrganizationNotificationConfig.Id,
 *         StreamingConfig = new Gcp.SecurityCenter.Inputs.V2OrganizationNotificationConfigStreamingConfigArgs
 *         {
 *             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 {
 * 		sccV2OrganizationNotificationConfig, err := pubsub.NewTopic(ctx, "scc_v2_organization_notification_config", &pubsub.TopicArgs{
 * 			Name: pulumi.String("my-topic"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = securitycenter.NewV2OrganizationNotificationConfig(ctx, "custom_organization_notification_config", &securitycenter.V2OrganizationNotificationConfigArgs{
 * 			ConfigId:     pulumi.String("my-config"),
 * 			Organization: pulumi.String("123456789"),
 * 			Location:     pulumi.String("global"),
 * 			Description:  pulumi.String("My custom Cloud Security Command Center Finding Organization Notification Configuration"),
 * 			PubsubTopic:  sccV2OrganizationNotificationConfig.ID(),
 * 			StreamingConfig: &securitycenter.V2OrganizationNotificationConfigStreamingConfigArgs{
 * 				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.V2OrganizationNotificationConfig;
 * import com.pulumi.gcp.securitycenter.V2OrganizationNotificationConfigArgs;
 * import com.pulumi.gcp.securitycenter.inputs.V2OrganizationNotificationConfigStreamingConfigArgs;
 * 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 sccV2OrganizationNotificationConfig = new Topic("sccV2OrganizationNotificationConfig", TopicArgs.builder()
 *             .name("my-topic")
 *             .build());
 *         var customOrganizationNotificationConfig = new V2OrganizationNotificationConfig("customOrganizationNotificationConfig", V2OrganizationNotificationConfigArgs.builder()
 *             .configId("my-config")
 *             .organization("123456789")
 *             .location("global")
 *             .description("My custom Cloud Security Command Center Finding Organization Notification Configuration")
 *             .pubsubTopic(sccV2OrganizationNotificationConfig.id())
 *             .streamingConfig(V2OrganizationNotificationConfigStreamingConfigArgs.builder()
 *                 .filter("category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"")
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   sccV2OrganizationNotificationConfig:
 *     type: gcp:pubsub:Topic
 *     name: scc_v2_organization_notification_config
 *     properties:
 *       name: my-topic
 *   customOrganizationNotificationConfig:
 *     type: gcp:securitycenter:V2OrganizationNotificationConfig
 *     name: custom_organization_notification_config
 *     properties:
 *       configId: my-config
 *       organization: '123456789'
 *       location: global
 *       description: My custom Cloud Security Command Center Finding Organization Notification Configuration
 *       pubsubTopic: ${sccV2OrganizationNotificationConfig.id}
 *       streamingConfig:
 *         filter: category = "OPEN_FIREWALL" AND state = "ACTIVE"
 * ```
 * 
 * ## Import
 * OrganizationNotificationConfig can be imported using any of these accepted formats:
 * * `{{name}}`
 * When using the `pulumi import` command, OrganizationNotificationConfig can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:securitycenter/v2OrganizationNotificationConfig:V2OrganizationNotificationConfig default {{name}}
 * ```
 * @property configId This must be unique within the organization.
 * @property description The description of the notification config (max of 1024 characters).
 * @property location location Id is provided by organization. If not provided, Use global as default.
 * @property organization The organization whose Cloud Security Command Center the Notification
 * Config lives in.
 * @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 V2OrganizationNotificationConfigArgs(
    public val configId: Output? = null,
    public val description: Output? = null,
    public val location: Output? = null,
    public val organization: Output? = null,
    public val pubsubTopic: Output? = null,
    public val streamingConfig: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.securitycenter.V2OrganizationNotificationConfigArgs =
        com.pulumi.gcp.securitycenter.V2OrganizationNotificationConfigArgs.builder()
            .configId(configId?.applyValue({ args0 -> args0 }))
            .description(description?.applyValue({ args0 -> args0 }))
            .location(location?.applyValue({ args0 -> args0 }))
            .organization(organization?.applyValue({ args0 -> args0 }))
            .pubsubTopic(pubsubTopic?.applyValue({ args0 -> args0 }))
            .streamingConfig(
                streamingConfig?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [V2OrganizationNotificationConfigArgs].
 */
@PulumiTagMarker
public class V2OrganizationNotificationConfigArgsBuilder internal constructor() {
    private var configId: Output? = null

    private var description: Output? = null

    private var location: Output? = null

    private var organization: Output? = null

    private var pubsubTopic: Output? = null

    private var streamingConfig: Output? = null

    /**
     * @param value This must be unique within the organization.
     */
    @JvmName("sasbbgfeqmsmikto")
    public suspend fun configId(`value`: Output) {
        this.configId = value
    }

    /**
     * @param value The description of the notification config (max of 1024 characters).
     */
    @JvmName("mjnpihoycgehwroe")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value location Id is provided by organization. If not provided, Use global as default.
     */
    @JvmName("revlfglxnumjkiat")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value The organization whose Cloud Security Command Center the Notification
     * Config lives in.
     */
    @JvmName("fesndobcekrxbxre")
    public suspend fun organization(`value`: Output) {
        this.organization = value
    }

    /**
     * @param value The Pub/Sub topic to send notifications to. Its format is
     * "projects/[project_id]/topics/[topic]".
     */
    @JvmName("fscqosswemoalklw")
    public suspend fun pubsubTopic(`value`: Output) {
        this.pubsubTopic = value
    }

    /**
     * @param value The config for triggering streaming-based notifications.
     * Structure is documented below.
     */
    @JvmName("pkmfreadjflxhyjf")
    public suspend fun streamingConfig(`value`: Output) {
        this.streamingConfig = value
    }

    /**
     * @param value This must be unique within the organization.
     */
    @JvmName("aoixgvxdyuremqwy")
    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("bcayyvykptajwwhg")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value location Id is provided by organization. If not provided, Use global as default.
     */
    @JvmName("fbccwnjvvwbgrtvc")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param value The organization whose Cloud Security Command Center the Notification
     * Config lives in.
     */
    @JvmName("gylmaxpiqyumwauj")
    public suspend fun organization(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.organization = mapped
    }

    /**
     * @param value The Pub/Sub topic to send notifications to. Its format is
     * "projects/[project_id]/topics/[topic]".
     */
    @JvmName("uaiuisttaydivphs")
    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("fxupcdnqvjypmbjn")
    public suspend fun streamingConfig(`value`: V2OrganizationNotificationConfigStreamingConfigArgs?) {
        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("jrrdpqlhewhjcuun")
    public suspend fun streamingConfig(argument: suspend V2OrganizationNotificationConfigStreamingConfigArgsBuilder.() -> Unit) {
        val toBeMapped = V2OrganizationNotificationConfigStreamingConfigArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.streamingConfig = mapped
    }

    internal fun build(): V2OrganizationNotificationConfigArgs = V2OrganizationNotificationConfigArgs(
        configId = configId,
        description = description,
        location = location,
        organization = organization,
        pubsubTopic = pubsubTopic,
        streamingConfig = streamingConfig,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy