MuteConfigArgs

data class MuteConfigArgs(val description: Output<String>? = null, val expiryTime: Output<String>? = null, val filter: Output<String>? = null, val muteConfigId: Output<String>? = null, val parent: Output<String>? = null, val type: Output<String>? = null) : ConvertibleToJava<MuteConfigArgs>

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 MuteConfig, see:

Example Usage

Scc Mute Config

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const _default = new gcp.securitycenter.MuteConfig("default", {
muteConfigId: "my-config",
parent: "organizations/123456789",
filter: "category: \"OS_VULNERABILITY\"",
description: "My Mute Config",
type: "DYNAMIC",
expiryTime: "2215-02-03T15:01:23Z",
});
import pulumi
import pulumi_gcp as gcp
default = gcp.securitycenter.MuteConfig("default",
mute_config_id="my-config",
parent="organizations/123456789",
filter="category: \"OS_VULNERABILITY\"",
description="My Mute Config",
type="DYNAMIC",
expiry_time="2215-02-03T15:01:23Z")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var @default = new Gcp.SecurityCenter.MuteConfig("default", new()
{
MuteConfigId = "my-config",
Parent = "organizations/123456789",
Filter = "category: \"OS_VULNERABILITY\"",
Description = "My Mute Config",
Type = "DYNAMIC",
ExpiryTime = "2215-02-03T15:01:23Z",
});
});
package main
import (
"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 {
_, err := securitycenter.NewMuteConfig(ctx, "default", &securitycenter.MuteConfigArgs{
MuteConfigId: pulumi.String("my-config"),
Parent: pulumi.String("organizations/123456789"),
Filter: pulumi.String("category: \"OS_VULNERABILITY\""),
Description: pulumi.String("My Mute Config"),
Type: pulumi.String("DYNAMIC"),
ExpiryTime: pulumi.String("2215-02-03T15:01:23Z"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.securitycenter.MuteConfig;
import com.pulumi.gcp.securitycenter.MuteConfigArgs;
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 MuteConfig("default", MuteConfigArgs.builder()
.muteConfigId("my-config")
.parent("organizations/123456789")
.filter("category: \"OS_VULNERABILITY\"")
.description("My Mute Config")
.type("DYNAMIC")
.expiryTime("2215-02-03T15:01:23Z")
.build());
}
}
resources:
default:
type: gcp:securitycenter:MuteConfig
properties:
muteConfigId: my-config
parent: organizations/123456789
filter: 'category: "OS_VULNERABILITY"'
description: My Mute Config
type: DYNAMIC
expiryTime: 2215-02-03T15:01:23Z

Import

MuteConfig can be imported using any of these accepted formats:

  • {{name}} When using the pulumi import command, MuteConfig can be imported using one of the formats above. For example:

$ pulumi import gcp:securitycenter/muteConfig:MuteConfig default {{name}}

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, expiryTime: Output<String>? = null, filter: Output<String>? = null, muteConfigId: Output<String>? = null, parent: Output<String>? = null, type: Output<String>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

A description of the mute config.

Link copied to clipboard
val expiryTime: Output<String>? = null

Optional. The expiry of the mute config. Only applicable for dynamic configs. If the expiry is set, when the config expires, it is removed from all findings. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

Link copied to clipboard
val filter: Output<String>? = 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.

Link copied to clipboard
val muteConfigId: Output<String>? = null

Unique identifier provided by the client within the parent scope.

Link copied to clipboard
val parent: Output<String>? = null

Resource name of the new mute configs's parent. Its format is "organizations/organization_id", "folders/folder_id", or "projects/project_id".

Link copied to clipboard
val type: Output<String>? = null

The type of the mute config, which determines what type of mute state the config affects. Default value is DYNAMIC. Possible values are: MUTE_CONFIG_TYPE_UNSPECIFIED, STATIC, DYNAMIC.

Functions

Link copied to clipboard
open override fun toJava(): MuteConfigArgs