![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.securitycenter.kotlin.V2ProjectMuteConfig.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.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 [V2ProjectMuteConfig].
*/
@PulumiTagMarker
public class V2ProjectMuteConfigResourceBuilder internal constructor() {
public var name: String? = null
public var args: V2ProjectMuteConfigArgs = V2ProjectMuteConfigArgs()
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 V2ProjectMuteConfigArgsBuilder.() -> Unit) {
val builder = V2ProjectMuteConfigArgsBuilder()
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(): V2ProjectMuteConfig {
val builtJavaResource =
com.pulumi.gcp.securitycenter.V2ProjectMuteConfig(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return V2ProjectMuteConfig(builtJavaResource)
}
}
/**
* Mute Findings is a volume management feature in Security Command Center
* that lets you manually or programmatically hide irrelevant findings,
* and create filters to automatically silence existing and future
* findings based on criteria you specify.
* To get more information about ProjectMuteConfig, see:
* * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v2/projects.muteConfigs)
* ## Example Usage
* ### Scc V2 Project Mute Config Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const _default = new gcp.securitycenter.V2ProjectMuteConfig("default", {
* muteConfigId: "my-config",
* project: "",
* location: "global",
* description: "My custom Cloud Security Command Center Finding Project mute Configuration",
* filter: "severity = \"HIGH\"",
* type: "STATIC",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* default = gcp.securitycenter.V2ProjectMuteConfig("default",
* mute_config_id="my-config",
* project="",
* location="global",
* description="My custom Cloud Security Command Center Finding Project mute Configuration",
* filter="severity = \"HIGH\"",
* type="STATIC")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var @default = new Gcp.SecurityCenter.V2ProjectMuteConfig("default", new()
* {
* MuteConfigId = "my-config",
* Project = "",
* Location = "global",
* Description = "My custom Cloud Security Command Center Finding Project mute Configuration",
* Filter = "severity = \"HIGH\"",
* Type = "STATIC",
* });
* });
* ```
* ```go
* package main
* import (
* "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 {
* _, err := securitycenter.NewV2ProjectMuteConfig(ctx, "default", &securitycenter.V2ProjectMuteConfigArgs{
* MuteConfigId: pulumi.String("my-config"),
* Project: pulumi.String(""),
* Location: pulumi.String("global"),
* Description: pulumi.String("My custom Cloud Security Command Center Finding Project mute Configuration"),
* Filter: pulumi.String("severity = \"HIGH\""),
* Type: pulumi.String("STATIC"),
* })
* 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.securitycenter.V2ProjectMuteConfig;
* import com.pulumi.gcp.securitycenter.V2ProjectMuteConfigArgs;
* 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 default_ = new V2ProjectMuteConfig("default", V2ProjectMuteConfigArgs.builder()
* .muteConfigId("my-config")
* .project("")
* .location("global")
* .description("My custom Cloud Security Command Center Finding Project mute Configuration")
* .filter("severity = \"HIGH\"")
* .type("STATIC")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:securitycenter:V2ProjectMuteConfig
* properties:
* muteConfigId: my-config
* project:
* location: global
* description: My custom Cloud Security Command Center Finding Project mute Configuration
* filter: severity = "HIGH"
* type: STATIC
* ```
*
* ## Import
* ProjectMuteConfig can be imported using any of these accepted formats:
* * `projects/{{project}}/locations/{{location}}/muteConfigs/{{mute_config_id}}`
* * `{{project}}/{{location}}/{{mute_config_id}}`
* * `{{location}}/{{mute_config_id}}`
* When using the `pulumi import` command, ProjectMuteConfig can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:securitycenter/v2ProjectMuteConfig:V2ProjectMuteConfig default projects/{{project}}/locations/{{location}}/muteConfigs/{{mute_config_id}}
* ```
* ```sh
* $ pulumi import gcp:securitycenter/v2ProjectMuteConfig:V2ProjectMuteConfig default {{project}}/{{location}}/{{mute_config_id}}
* ```
* ```sh
* $ pulumi import gcp:securitycenter/v2ProjectMuteConfig:V2ProjectMuteConfig default {{location}}/{{mute_config_id}}
* ```
*/
public class V2ProjectMuteConfig internal constructor(
override val javaResource: com.pulumi.gcp.securitycenter.V2ProjectMuteConfig,
) : KotlinCustomResource(javaResource, V2ProjectMuteConfigMapper) {
/**
* The time at which the mute config was created. This field is set by
* the server and will be ignored if provided on config creation.
*/
public val createTime: Output
get() = javaResource.createTime().applyValue({ args0 -> args0 })
/**
* A description of the mute config.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* An expression that defines the filter to apply across create/update
* events of findings. While creating a filter string, be mindful of
* the scope in which the mute configuration is being created. E.g.,
* If a filter contains project = X but is created under the
* project = Y scope, it might not match any findings.
*/
public val filter: Output
get() = javaResource.filter().applyValue({ args0 -> args0 })
/**
* location Id is provided by project. If not provided, Use global as default.
*/
public val location: Output?
get() = javaResource.location().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Email address of the user who last edited the mute config. This
* field is set by the server and will be ignored if provided on
* config creation or update.
*/
public val mostRecentEditor: Output
get() = javaResource.mostRecentEditor().applyValue({ args0 -> args0 })
/**
* Unique identifier provided by the client within the parent scope.
* - - -
*/
public val muteConfigId: Output
get() = javaResource.muteConfigId().applyValue({ args0 -> args0 })
/**
* Name of the mute config. Its format is
* projects/{project}/locations/global/muteConfigs/{configId},
* folders/{folder}/locations/global/muteConfigs/{configId},
* or organizations/{organization}/locations/global/muteConfigs/{configId}
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
public val project: Output
get() = javaResource.project().applyValue({ args0 -> args0 })
/**
* The type of the mute config.
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 -> args0 })
/**
* Output only. The most recent time at which the mute config was
* updated. This field is set by the server and will be ignored if
* provided on config creation or update.
*/
public val updateTime: Output
get() = javaResource.updateTime().applyValue({ args0 -> args0 })
}
public object V2ProjectMuteConfigMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.gcp.securitycenter.V2ProjectMuteConfig::class == javaResource::class
override fun map(javaResource: Resource): V2ProjectMuteConfig = V2ProjectMuteConfig(
javaResource
as com.pulumi.gcp.securitycenter.V2ProjectMuteConfig,
)
}
/**
* @see [V2ProjectMuteConfig].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [V2ProjectMuteConfig].
*/
public suspend fun v2ProjectMuteConfig(
name: String,
block: suspend V2ProjectMuteConfigResourceBuilder.() -> Unit,
): V2ProjectMuteConfig {
val builder = V2ProjectMuteConfigResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [V2ProjectMuteConfig].
* @param name The _unique_ name of the resulting resource.
*/
public fun v2ProjectMuteConfig(name: String): V2ProjectMuteConfig {
val builder = V2ProjectMuteConfigResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy