1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. securitycenter
  5. V2OrganizationMuteConfig
Google Cloud Classic v8.3.1 published on Wednesday, Sep 25, 2024 by Pulumi

gcp.securitycenter.V2OrganizationMuteConfig

Explore with Pulumi AI

gcp logo
Google Cloud Classic v8.3.1 published on Wednesday, Sep 25, 2024 by Pulumi

    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:

    Example Usage

    Scc V2 Organization Mute Config Basic

    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",
    });
    
    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")
    
    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.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
    	})
    }
    
    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",
        });
    
    });
    
    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());
    
        }
    }
    
    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
    

    Create V2OrganizationMuteConfig Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new V2OrganizationMuteConfig(name: string, args: V2OrganizationMuteConfigArgs, opts?: CustomResourceOptions);
    @overload
    def V2OrganizationMuteConfig(resource_name: str,
                                 args: V2OrganizationMuteConfigArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def V2OrganizationMuteConfig(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 filter: Optional[str] = None,
                                 mute_config_id: Optional[str] = None,
                                 organization: Optional[str] = None,
                                 type: Optional[str] = None,
                                 description: Optional[str] = None,
                                 location: Optional[str] = None)
    func NewV2OrganizationMuteConfig(ctx *Context, name string, args V2OrganizationMuteConfigArgs, opts ...ResourceOption) (*V2OrganizationMuteConfig, error)
    public V2OrganizationMuteConfig(string name, V2OrganizationMuteConfigArgs args, CustomResourceOptions? opts = null)
    public V2OrganizationMuteConfig(String name, V2OrganizationMuteConfigArgs args)
    public V2OrganizationMuteConfig(String name, V2OrganizationMuteConfigArgs args, CustomResourceOptions options)
    
    type: gcp:securitycenter:V2OrganizationMuteConfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args V2OrganizationMuteConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args V2OrganizationMuteConfigArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args V2OrganizationMuteConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args V2OrganizationMuteConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args V2OrganizationMuteConfigArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var v2organizationMuteConfigResource = new Gcp.SecurityCenter.V2OrganizationMuteConfig("v2organizationMuteConfigResource", new()
    {
        Filter = "string",
        MuteConfigId = "string",
        Organization = "string",
        Type = "string",
        Description = "string",
        Location = "string",
    });
    
    example, err := securitycenter.NewV2OrganizationMuteConfig(ctx, "v2organizationMuteConfigResource", &securitycenter.V2OrganizationMuteConfigArgs{
    	Filter:       pulumi.String("string"),
    	MuteConfigId: pulumi.String("string"),
    	Organization: pulumi.String("string"),
    	Type:         pulumi.String("string"),
    	Description:  pulumi.String("string"),
    	Location:     pulumi.String("string"),
    })
    
    var v2organizationMuteConfigResource = new V2OrganizationMuteConfig("v2organizationMuteConfigResource", V2OrganizationMuteConfigArgs.builder()
        .filter("string")
        .muteConfigId("string")
        .organization("string")
        .type("string")
        .description("string")
        .location("string")
        .build());
    
    v2organization_mute_config_resource = gcp.securitycenter.V2OrganizationMuteConfig("v2organizationMuteConfigResource",
        filter="string",
        mute_config_id="string",
        organization="string",
        type="string",
        description="string",
        location="string")
    
    const v2organizationMuteConfigResource = new gcp.securitycenter.V2OrganizationMuteConfig("v2organizationMuteConfigResource", {
        filter: "string",
        muteConfigId: "string",
        organization: "string",
        type: "string",
        description: "string",
        location: "string",
    });
    
    type: gcp:securitycenter:V2OrganizationMuteConfig
    properties:
        description: string
        filter: string
        location: string
        muteConfigId: string
        organization: string
        type: string
    

    V2OrganizationMuteConfig Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The V2OrganizationMuteConfig resource accepts the following input properties:

    Filter string
    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.
    MuteConfigId string
    Unique identifier provided by the client within the parent scope.


    Organization string
    The organization whose Cloud Security Command Center the Mute Config lives in.
    Type string
    The type of the mute config.
    Description string
    A description of the mute config.
    Location string
    location Id is provided by organization. If not provided, Use global as default.
    Filter string
    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.
    MuteConfigId string
    Unique identifier provided by the client within the parent scope.


    Organization string
    The organization whose Cloud Security Command Center the Mute Config lives in.
    Type string
    The type of the mute config.
    Description string
    A description of the mute config.
    Location string
    location Id is provided by organization. If not provided, Use global as default.
    filter String
    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.
    muteConfigId String
    Unique identifier provided by the client within the parent scope.


    organization String
    The organization whose Cloud Security Command Center the Mute Config lives in.
    type String
    The type of the mute config.
    description String
    A description of the mute config.
    location String
    location Id is provided by organization. If not provided, Use global as default.
    filter string
    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.
    muteConfigId string
    Unique identifier provided by the client within the parent scope.


    organization string
    The organization whose Cloud Security Command Center the Mute Config lives in.
    type string
    The type of the mute config.
    description string
    A description of the mute config.
    location string
    location Id is provided by organization. If not provided, Use global as default.
    filter str
    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.
    mute_config_id str
    Unique identifier provided by the client within the parent scope.


    organization str
    The organization whose Cloud Security Command Center the Mute Config lives in.
    type str
    The type of the mute config.
    description str
    A description of the mute config.
    location str
    location Id is provided by organization. If not provided, Use global as default.
    filter String
    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.
    muteConfigId String
    Unique identifier provided by the client within the parent scope.


    organization String
    The organization whose Cloud Security Command Center the Mute Config lives in.
    type String
    The type of the mute config.
    description String
    A description of the mute config.
    location String
    location Id is provided by organization. If not provided, Use global as default.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the V2OrganizationMuteConfig resource produces the following output properties:

    CreateTime string
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    MostRecentEditor string
    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.
    Name string
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    UpdateTime string
    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.
    CreateTime string
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    MostRecentEditor string
    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.
    Name string
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    UpdateTime string
    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.
    createTime String
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    mostRecentEditor String
    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.
    name String
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    updateTime String
    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.
    createTime string
    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.
    id string
    The provider-assigned unique ID for this managed resource.
    mostRecentEditor string
    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.
    name string
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    updateTime string
    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.
    create_time str
    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.
    id str
    The provider-assigned unique ID for this managed resource.
    most_recent_editor str
    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.
    name str
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    update_time str
    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.
    createTime String
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    mostRecentEditor String
    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.
    name String
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    updateTime String
    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.

    Look up Existing V2OrganizationMuteConfig Resource

    Get an existing V2OrganizationMuteConfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: V2OrganizationMuteConfigState, opts?: CustomResourceOptions): V2OrganizationMuteConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            filter: Optional[str] = None,
            location: Optional[str] = None,
            most_recent_editor: Optional[str] = None,
            mute_config_id: Optional[str] = None,
            name: Optional[str] = None,
            organization: Optional[str] = None,
            type: Optional[str] = None,
            update_time: Optional[str] = None) -> V2OrganizationMuteConfig
    func GetV2OrganizationMuteConfig(ctx *Context, name string, id IDInput, state *V2OrganizationMuteConfigState, opts ...ResourceOption) (*V2OrganizationMuteConfig, error)
    public static V2OrganizationMuteConfig Get(string name, Input<string> id, V2OrganizationMuteConfigState? state, CustomResourceOptions? opts = null)
    public static V2OrganizationMuteConfig get(String name, Output<String> id, V2OrganizationMuteConfigState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreateTime string
    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.
    Description string
    A description of the mute config.
    Filter string
    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.
    Location string
    location Id is provided by organization. If not provided, Use global as default.
    MostRecentEditor string
    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.
    MuteConfigId string
    Unique identifier provided by the client within the parent scope.


    Name string
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    Organization string
    The organization whose Cloud Security Command Center the Mute Config lives in.
    Type string
    The type of the mute config.
    UpdateTime string
    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.
    CreateTime string
    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.
    Description string
    A description of the mute config.
    Filter string
    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.
    Location string
    location Id is provided by organization. If not provided, Use global as default.
    MostRecentEditor string
    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.
    MuteConfigId string
    Unique identifier provided by the client within the parent scope.


    Name string
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    Organization string
    The organization whose Cloud Security Command Center the Mute Config lives in.
    Type string
    The type of the mute config.
    UpdateTime string
    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.
    createTime String
    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.
    description String
    A description of the mute config.
    filter String
    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.
    location String
    location Id is provided by organization. If not provided, Use global as default.
    mostRecentEditor String
    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.
    muteConfigId String
    Unique identifier provided by the client within the parent scope.


    name String
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    organization String
    The organization whose Cloud Security Command Center the Mute Config lives in.
    type String
    The type of the mute config.
    updateTime String
    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.
    createTime string
    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.
    description string
    A description of the mute config.
    filter string
    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.
    location string
    location Id is provided by organization. If not provided, Use global as default.
    mostRecentEditor string
    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.
    muteConfigId string
    Unique identifier provided by the client within the parent scope.


    name string
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    organization string
    The organization whose Cloud Security Command Center the Mute Config lives in.
    type string
    The type of the mute config.
    updateTime string
    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.
    create_time str
    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.
    description str
    A description of the mute config.
    filter str
    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.
    location str
    location Id is provided by organization. If not provided, Use global as default.
    most_recent_editor str
    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.
    mute_config_id str
    Unique identifier provided by the client within the parent scope.


    name str
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    organization str
    The organization whose Cloud Security Command Center the Mute Config lives in.
    type str
    The type of the mute config.
    update_time str
    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.
    createTime String
    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.
    description String
    A description of the mute config.
    filter String
    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.
    location String
    location Id is provided by organization. If not provided, Use global as default.
    mostRecentEditor String
    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.
    muteConfigId String
    Unique identifier provided by the client within the parent scope.


    name String
    Name of the mute config. Its format is organizations/{organization}/locations/global/muteConfigs/{configId}, folders/{folder}/locations/global/muteConfigs/{configId}, or projects/{project}/locations/global/muteConfigs/{configId}
    organization String
    The organization whose Cloud Security Command Center the Mute Config lives in.
    type String
    The type of the mute config.
    updateTime String
    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.

    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:

    $ pulumi import gcp:securitycenter/v2OrganizationMuteConfig:V2OrganizationMuteConfig default organizations/{{organization}}/locations/{{location}}/muteConfigs/{{mute_config_id}}
    
    $ pulumi import gcp:securitycenter/v2OrganizationMuteConfig:V2OrganizationMuteConfig default {{organization}}/{{location}}/{{mute_config_id}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v8.3.1 published on Wednesday, Sep 25, 2024 by Pulumi