![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.securitycenter.kotlin.V2OrganizationNotificationConfig.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.gcp.securitycenter.kotlin.outputs.V2OrganizationNotificationConfigStreamingConfig
import com.pulumi.gcp.securitycenter.kotlin.outputs.V2OrganizationNotificationConfigStreamingConfig.Companion.toKotlin
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
/**
* Builder for [V2OrganizationNotificationConfig].
*/
@PulumiTagMarker
public class V2OrganizationNotificationConfigResourceBuilder internal constructor() {
public var name: String? = null
public var args: V2OrganizationNotificationConfigArgs = V2OrganizationNotificationConfigArgs()
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 V2OrganizationNotificationConfigArgsBuilder.() -> Unit) {
val builder = V2OrganizationNotificationConfigArgsBuilder()
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(): V2OrganizationNotificationConfig {
val builtJavaResource =
com.pulumi.gcp.securitycenter.V2OrganizationNotificationConfig(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return V2OrganizationNotificationConfig(builtJavaResource)
}
}
/**
* 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/v7/go/gcp/pubsub"
* "github.com/pulumi/pulumi-gcp/sdk/v7/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:
* * `organizations/{{organization}}/locations/{{location}}/notificationConfigs/{{name}}`
* * `{{organization}}/{{location}}/{{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 organizations/{{organization}}/locations/{{location}}/notificationConfigs/{{name}}
* ```
* ```sh
* $ pulumi import gcp:securitycenter/v2OrganizationNotificationConfig:V2OrganizationNotificationConfig default {{organization}}/{{location}}/{{name}}
* ```
*/
public class V2OrganizationNotificationConfig internal constructor(
override val javaResource: com.pulumi.gcp.securitycenter.V2OrganizationNotificationConfig,
) : KotlinCustomResource(javaResource, V2OrganizationNotificationConfigMapper) {
/**
* This must be unique within the organization.
*/
public val configId: Output
get() = javaResource.configId().applyValue({ args0 -> args0 })
/**
* The description of the notification config (max of 1024 characters).
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* location Id is provided by organization. If not provided, Use global as default.
*/
public val location: Output?
get() = javaResource.location().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* The resource name of this notification config, in the format
* `organizations/{{organization}}/notificationConfigs/{{config_id}}`.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The organization whose Cloud Security Command Center the Notification
* Config lives in.
*/
public val organization: Output
get() = javaResource.organization().applyValue({ args0 -> args0 })
/**
* The Pub/Sub topic to send notifications to. Its format is
* "projects/[project_id]/topics/[topic]".
*/
public val pubsubTopic: Output
get() = javaResource.pubsubTopic().applyValue({ args0 -> args0 })
/**
* The service account that needs "pubsub.topics.publish" permission to
* publish to the Pub/Sub topic.
*/
public val serviceAccount: Output
get() = javaResource.serviceAccount().applyValue({ args0 -> args0 })
/**
* The config for triggering streaming-based notifications.
* Structure is documented below.
*/
public val streamingConfig: Output
get() = javaResource.streamingConfig().applyValue({ args0 ->
args0.let({ args0 ->
toKotlin(args0)
})
})
}
public object V2OrganizationNotificationConfigMapper :
ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.gcp.securitycenter.V2OrganizationNotificationConfig::class == javaResource::class
override fun map(javaResource: Resource): V2OrganizationNotificationConfig =
V2OrganizationNotificationConfig(
javaResource as
com.pulumi.gcp.securitycenter.V2OrganizationNotificationConfig,
)
}
/**
* @see [V2OrganizationNotificationConfig].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [V2OrganizationNotificationConfig].
*/
public suspend fun v2OrganizationNotificationConfig(
name: String,
block: suspend V2OrganizationNotificationConfigResourceBuilder.() -> Unit,
): V2OrganizationNotificationConfig {
val builder = V2OrganizationNotificationConfigResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [V2OrganizationNotificationConfig].
* @param name The _unique_ name of the resulting resource.
*/
public fun v2OrganizationNotificationConfig(name: String): V2OrganizationNotificationConfig {
val builder = V2OrganizationNotificationConfigResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy