@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
125 lines • 5.6 kB
JavaScript
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.V2OrganizationMuteConfig = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* 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",
* });
* ```
*
* ## 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}}
* ```
*/
class V2OrganizationMuteConfig extends pulumi.CustomResource {
/**
* Get an existing V2OrganizationMuteConfig resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new V2OrganizationMuteConfig(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of V2OrganizationMuteConfig. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === V2OrganizationMuteConfig.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["createTime"] = state?.createTime;
resourceInputs["description"] = state?.description;
resourceInputs["filter"] = state?.filter;
resourceInputs["location"] = state?.location;
resourceInputs["mostRecentEditor"] = state?.mostRecentEditor;
resourceInputs["muteConfigId"] = state?.muteConfigId;
resourceInputs["name"] = state?.name;
resourceInputs["organization"] = state?.organization;
resourceInputs["type"] = state?.type;
resourceInputs["updateTime"] = state?.updateTime;
}
else {
const args = argsOrState;
if (args?.filter === undefined && !opts.urn) {
throw new Error("Missing required property 'filter'");
}
if (args?.muteConfigId === undefined && !opts.urn) {
throw new Error("Missing required property 'muteConfigId'");
}
if (args?.organization === undefined && !opts.urn) {
throw new Error("Missing required property 'organization'");
}
if (args?.type === undefined && !opts.urn) {
throw new Error("Missing required property 'type'");
}
resourceInputs["description"] = args?.description;
resourceInputs["filter"] = args?.filter;
resourceInputs["location"] = args?.location;
resourceInputs["muteConfigId"] = args?.muteConfigId;
resourceInputs["organization"] = args?.organization;
resourceInputs["type"] = args?.type;
resourceInputs["createTime"] = undefined /*out*/;
resourceInputs["mostRecentEditor"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["updateTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(V2OrganizationMuteConfig.__pulumiType, name, resourceInputs, opts);
}
}
exports.V2OrganizationMuteConfig = V2OrganizationMuteConfig;
/** @internal */
V2OrganizationMuteConfig.__pulumiType = 'gcp:securitycenter/v2OrganizationMuteConfig:V2OrganizationMuteConfig';
//# sourceMappingURL=v2organizationMuteConfig.js.map
;