![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.securitycenter.kotlin.V2OrganizationMuteConfigArgs.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.V2OrganizationMuteConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* 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 OrganizationMuteConfig, see:
* * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v2/organizations.muteConfigs)
* ## Example Usage
* ### Scc V2 Organization Mute Config Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const _default = new gcp.securitycenter.V2OrganizationMuteConfig("default", {
* muteConfigId: "my-config",
* organization: "123456789",
* location: "global",
* description: "My custom Cloud Security Command Center Finding Organization mute Configuration",
* filter: "severity = \"HIGH\"",
* type: "STATIC",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* default = gcp.securitycenter.V2OrganizationMuteConfig("default",
* mute_config_id="my-config",
* organization="123456789",
* location="global",
* description="My custom Cloud Security Command Center Finding Organization 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.V2OrganizationMuteConfig("default", new()
* {
* MuteConfigId = "my-config",
* Organization = "123456789",
* Location = "global",
* Description = "My custom Cloud Security Command Center Finding Organization 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.NewV2OrganizationMuteConfig(ctx, "default", &securitycenter.V2OrganizationMuteConfigArgs{
* MuteConfigId: pulumi.String("my-config"),
* Organization: pulumi.String("123456789"),
* Location: pulumi.String("global"),
* Description: pulumi.String("My custom Cloud Security Command Center Finding Organization 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.V2OrganizationMuteConfig;
* import com.pulumi.gcp.securitycenter.V2OrganizationMuteConfigArgs;
* 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 V2OrganizationMuteConfig("default", V2OrganizationMuteConfigArgs.builder()
* .muteConfigId("my-config")
* .organization("123456789")
* .location("global")
* .description("My custom Cloud Security Command Center Finding Organization mute Configuration")
* .filter("severity = \"HIGH\"")
* .type("STATIC")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:securitycenter:V2OrganizationMuteConfig
* properties:
* muteConfigId: my-config
* organization: '123456789'
* location: global
* description: My custom Cloud Security Command Center Finding Organization mute Configuration
* filter: severity = "HIGH"
* type: STATIC
* ```
*
* ## Import
* OrganizationMuteConfig can be imported using any of these accepted formats:
* * `organizations/{{organization}}/locations/{{location}}/muteConfigs/{{mute_config_id}}`
* * `{{organization}}/{{location}}/{{mute_config_id}}`
* When using the `pulumi import` command, OrganizationMuteConfig can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:securitycenter/v2OrganizationMuteConfig:V2OrganizationMuteConfig default organizations/{{organization}}/locations/{{location}}/muteConfigs/{{mute_config_id}}
* ```
* ```sh
* $ pulumi import gcp:securitycenter/v2OrganizationMuteConfig:V2OrganizationMuteConfig default {{organization}}/{{location}}/{{mute_config_id}}
* ```
* @property description A description of the mute config.
* @property filter 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.
* @property location location Id is provided by organization. If not provided, Use global as default.
* @property muteConfigId Unique identifier provided by the client within the parent scope.
* - - -
* @property organization The organization whose Cloud Security Command Center the Mute
* Config lives in.
* @property type The type of the mute config.
*/
public data class V2OrganizationMuteConfigArgs(
public val description: Output? = null,
public val filter: Output? = null,
public val location: Output? = null,
public val muteConfigId: Output? = null,
public val organization: Output? = null,
public val type: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.securitycenter.V2OrganizationMuteConfigArgs =
com.pulumi.gcp.securitycenter.V2OrganizationMuteConfigArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.filter(filter?.applyValue({ args0 -> args0 }))
.location(location?.applyValue({ args0 -> args0 }))
.muteConfigId(muteConfigId?.applyValue({ args0 -> args0 }))
.organization(organization?.applyValue({ args0 -> args0 }))
.type(type?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [V2OrganizationMuteConfigArgs].
*/
@PulumiTagMarker
public class V2OrganizationMuteConfigArgsBuilder internal constructor() {
private var description: Output? = null
private var filter: Output? = null
private var location: Output? = null
private var muteConfigId: Output? = null
private var organization: Output? = null
private var type: Output? = null
/**
* @param value A description of the mute config.
*/
@JvmName("pedyvtiucaicqhua")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value 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.
*/
@JvmName("vitnfemvqeomccph")
public suspend fun filter(`value`: Output) {
this.filter = value
}
/**
* @param value location Id is provided by organization. If not provided, Use global as default.
*/
@JvmName("eyxnaoigkvxceort")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value Unique identifier provided by the client within the parent scope.
* - - -
*/
@JvmName("yakpnigqovailvsr")
public suspend fun muteConfigId(`value`: Output) {
this.muteConfigId = value
}
/**
* @param value The organization whose Cloud Security Command Center the Mute
* Config lives in.
*/
@JvmName("oiqmkyvaguqdcqgl")
public suspend fun organization(`value`: Output) {
this.organization = value
}
/**
* @param value The type of the mute config.
*/
@JvmName("klwcpfaoqdnfjjyf")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value A description of the mute config.
*/
@JvmName("qmhqvewblakdhcna")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value 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.
*/
@JvmName("yleenevqictijkas")
public suspend fun filter(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.filter = mapped
}
/**
* @param value location Id is provided by organization. If not provided, Use global as default.
*/
@JvmName("jhatspxctsmqvbcv")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.location = mapped
}
/**
* @param value Unique identifier provided by the client within the parent scope.
* - - -
*/
@JvmName("hdfbdsismarvfrva")
public suspend fun muteConfigId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.muteConfigId = mapped
}
/**
* @param value The organization whose Cloud Security Command Center the Mute
* Config lives in.
*/
@JvmName("qprmxhrdeqgukgmi")
public suspend fun organization(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.organization = mapped
}
/**
* @param value The type of the mute config.
*/
@JvmName("jwfygsqvetandwuc")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): V2OrganizationMuteConfigArgs = V2OrganizationMuteConfigArgs(
description = description,
filter = filter,
location = location,
muteConfigId = muteConfigId,
organization = organization,
type = type,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy