gcp.securitycenter.V2FolderNotificationConfig
Explore with Pulumi AI
A Cloud Security Command Center (Cloud SCC) notification configs. A notification config is a Cloud SCC resource that contains the configuration to send notifications for create/update events of findings, assets and etc.
Note: In order to use Cloud SCC resources, your organization must be enrolled in SCC Standard/Premium. Without doing so, you may run into errors during resource creation.
To get more information about FolderNotificationConfig, see:
- API documentation
- How-to Guides
Example Usage
Scc V2 Folder Notification Config Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const folder = new gcp.organizations.Folder("folder", {
parent: "organizations/123456789",
displayName: "folder-name",
});
const sccV2FolderNotificationConfig = new gcp.pubsub.Topic("scc_v2_folder_notification_config", {name: "my-topic"});
const customNotificationConfig = new gcp.securitycenter.V2FolderNotificationConfig("custom_notification_config", {
configId: "my-config",
folder: folder.folderId,
location: "global",
description: "My custom Cloud Security Command Center Finding Notification Configuration",
pubsubTopic: sccV2FolderNotificationConfig.id,
streamingConfig: {
filter: "category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"",
},
});
import pulumi
import pulumi_gcp as gcp
folder = gcp.organizations.Folder("folder",
parent="organizations/123456789",
display_name="folder-name")
scc_v2_folder_notification_config = gcp.pubsub.Topic("scc_v2_folder_notification_config", name="my-topic")
custom_notification_config = gcp.securitycenter.V2FolderNotificationConfig("custom_notification_config",
config_id="my-config",
folder=folder.folder_id,
location="global",
description="My custom Cloud Security Command Center Finding Notification Configuration",
pubsub_topic=scc_v2_folder_notification_config.id,
streaming_config={
"filter": "category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"",
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/pubsub"
"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 {
folder, err := organizations.NewFolder(ctx, "folder", &organizations.FolderArgs{
Parent: pulumi.String("organizations/123456789"),
DisplayName: pulumi.String("folder-name"),
})
if err != nil {
return err
}
sccV2FolderNotificationConfig, err := pubsub.NewTopic(ctx, "scc_v2_folder_notification_config", &pubsub.TopicArgs{
Name: pulumi.String("my-topic"),
})
if err != nil {
return err
}
_, err = securitycenter.NewV2FolderNotificationConfig(ctx, "custom_notification_config", &securitycenter.V2FolderNotificationConfigArgs{
ConfigId: pulumi.String("my-config"),
Folder: folder.FolderId,
Location: pulumi.String("global"),
Description: pulumi.String("My custom Cloud Security Command Center Finding Notification Configuration"),
PubsubTopic: sccV2FolderNotificationConfig.ID(),
StreamingConfig: &securitycenter.V2FolderNotificationConfigStreamingConfigArgs{
Filter: pulumi.String("category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\""),
},
})
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 folder = new Gcp.Organizations.Folder("folder", new()
{
Parent = "organizations/123456789",
DisplayName = "folder-name",
});
var sccV2FolderNotificationConfig = new Gcp.PubSub.Topic("scc_v2_folder_notification_config", new()
{
Name = "my-topic",
});
var customNotificationConfig = new Gcp.SecurityCenter.V2FolderNotificationConfig("custom_notification_config", new()
{
ConfigId = "my-config",
Folder = folder.FolderId,
Location = "global",
Description = "My custom Cloud Security Command Center Finding Notification Configuration",
PubsubTopic = sccV2FolderNotificationConfig.Id,
StreamingConfig = new Gcp.SecurityCenter.Inputs.V2FolderNotificationConfigStreamingConfigArgs
{
Filter = "category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.Folder;
import com.pulumi.gcp.organizations.FolderArgs;
import com.pulumi.gcp.pubsub.Topic;
import com.pulumi.gcp.pubsub.TopicArgs;
import com.pulumi.gcp.securitycenter.V2FolderNotificationConfig;
import com.pulumi.gcp.securitycenter.V2FolderNotificationConfigArgs;
import com.pulumi.gcp.securitycenter.inputs.V2FolderNotificationConfigStreamingConfigArgs;
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 folder = new Folder("folder", FolderArgs.builder()
.parent("organizations/123456789")
.displayName("folder-name")
.build());
var sccV2FolderNotificationConfig = new Topic("sccV2FolderNotificationConfig", TopicArgs.builder()
.name("my-topic")
.build());
var customNotificationConfig = new V2FolderNotificationConfig("customNotificationConfig", V2FolderNotificationConfigArgs.builder()
.configId("my-config")
.folder(folder.folderId())
.location("global")
.description("My custom Cloud Security Command Center Finding Notification Configuration")
.pubsubTopic(sccV2FolderNotificationConfig.id())
.streamingConfig(V2FolderNotificationConfigStreamingConfigArgs.builder()
.filter("category = \"OPEN_FIREWALL\" AND state = \"ACTIVE\"")
.build())
.build());
}
}
resources:
folder:
type: gcp:organizations:Folder
properties:
parent: organizations/123456789
displayName: folder-name
sccV2FolderNotificationConfig:
type: gcp:pubsub:Topic
name: scc_v2_folder_notification_config
properties:
name: my-topic
customNotificationConfig:
type: gcp:securitycenter:V2FolderNotificationConfig
name: custom_notification_config
properties:
configId: my-config
folder: ${folder.folderId}
location: global
description: My custom Cloud Security Command Center Finding Notification Configuration
pubsubTopic: ${sccV2FolderNotificationConfig.id}
streamingConfig:
filter: category = "OPEN_FIREWALL" AND state = "ACTIVE"
Create V2FolderNotificationConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new V2FolderNotificationConfig(name: string, args: V2FolderNotificationConfigArgs, opts?: CustomResourceOptions);
@overload
def V2FolderNotificationConfig(resource_name: str,
args: V2FolderNotificationConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def V2FolderNotificationConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
config_id: Optional[str] = None,
folder: Optional[str] = None,
pubsub_topic: Optional[str] = None,
streaming_config: Optional[V2FolderNotificationConfigStreamingConfigArgs] = None,
description: Optional[str] = None,
location: Optional[str] = None)
func NewV2FolderNotificationConfig(ctx *Context, name string, args V2FolderNotificationConfigArgs, opts ...ResourceOption) (*V2FolderNotificationConfig, error)
public V2FolderNotificationConfig(string name, V2FolderNotificationConfigArgs args, CustomResourceOptions? opts = null)
public V2FolderNotificationConfig(String name, V2FolderNotificationConfigArgs args)
public V2FolderNotificationConfig(String name, V2FolderNotificationConfigArgs args, CustomResourceOptions options)
type: gcp:securitycenter:V2FolderNotificationConfig
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 V2FolderNotificationConfigArgs
- 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 V2FolderNotificationConfigArgs
- 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 V2FolderNotificationConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args V2FolderNotificationConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args V2FolderNotificationConfigArgs
- 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 v2folderNotificationConfigResource = new Gcp.SecurityCenter.V2FolderNotificationConfig("v2folderNotificationConfigResource", new()
{
ConfigId = "string",
Folder = "string",
PubsubTopic = "string",
StreamingConfig = new Gcp.SecurityCenter.Inputs.V2FolderNotificationConfigStreamingConfigArgs
{
Filter = "string",
},
Description = "string",
Location = "string",
});
example, err := securitycenter.NewV2FolderNotificationConfig(ctx, "v2folderNotificationConfigResource", &securitycenter.V2FolderNotificationConfigArgs{
ConfigId: pulumi.String("string"),
Folder: pulumi.String("string"),
PubsubTopic: pulumi.String("string"),
StreamingConfig: &securitycenter.V2FolderNotificationConfigStreamingConfigArgs{
Filter: pulumi.String("string"),
},
Description: pulumi.String("string"),
Location: pulumi.String("string"),
})
var v2folderNotificationConfigResource = new V2FolderNotificationConfig("v2folderNotificationConfigResource", V2FolderNotificationConfigArgs.builder()
.configId("string")
.folder("string")
.pubsubTopic("string")
.streamingConfig(V2FolderNotificationConfigStreamingConfigArgs.builder()
.filter("string")
.build())
.description("string")
.location("string")
.build());
v2folder_notification_config_resource = gcp.securitycenter.V2FolderNotificationConfig("v2folderNotificationConfigResource",
config_id="string",
folder="string",
pubsub_topic="string",
streaming_config={
"filter": "string",
},
description="string",
location="string")
const v2folderNotificationConfigResource = new gcp.securitycenter.V2FolderNotificationConfig("v2folderNotificationConfigResource", {
configId: "string",
folder: "string",
pubsubTopic: "string",
streamingConfig: {
filter: "string",
},
description: "string",
location: "string",
});
type: gcp:securitycenter:V2FolderNotificationConfig
properties:
configId: string
description: string
folder: string
location: string
pubsubTopic: string
streamingConfig:
filter: string
V2FolderNotificationConfig 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 V2FolderNotificationConfig resource accepts the following input properties:
- Config
Id string - This must be unique within the organization.
- Folder string
- Numerical ID of the parent folder.
- Pubsub
Topic string - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- Streaming
Config V2FolderNotification Config Streaming Config - The config for triggering streaming-based notifications. Structure is documented below.
- Description string
- The description of the notification config (max of 1024 characters).
- Location string
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- Config
Id string - This must be unique within the organization.
- Folder string
- Numerical ID of the parent folder.
- Pubsub
Topic string - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- Streaming
Config V2FolderNotification Config Streaming Config Args - The config for triggering streaming-based notifications. Structure is documented below.
- Description string
- The description of the notification config (max of 1024 characters).
- Location string
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- config
Id String - This must be unique within the organization.
- folder String
- Numerical ID of the parent folder.
- pubsub
Topic String - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- streaming
Config V2FolderNotification Config Streaming Config - The config for triggering streaming-based notifications. Structure is documented below.
- description String
- The description of the notification config (max of 1024 characters).
- location String
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- config
Id string - This must be unique within the organization.
- folder string
- Numerical ID of the parent folder.
- pubsub
Topic string - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- streaming
Config V2FolderNotification Config Streaming Config - The config for triggering streaming-based notifications. Structure is documented below.
- description string
- The description of the notification config (max of 1024 characters).
- location string
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- config_
id str - This must be unique within the organization.
- folder str
- Numerical ID of the parent folder.
- pubsub_
topic str - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- streaming_
config V2FolderNotification Config Streaming Config Args - The config for triggering streaming-based notifications. Structure is documented below.
- description str
- The description of the notification config (max of 1024 characters).
- location str
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- config
Id String - This must be unique within the organization.
- folder String
- Numerical ID of the parent folder.
- pubsub
Topic String - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- streaming
Config Property Map - The config for triggering streaming-based notifications. Structure is documented below.
- description String
- The description of the notification config (max of 1024 characters).
- location String
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
Outputs
All input properties are implicitly available as output properties. Additionally, the V2FolderNotificationConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - Service
Account string - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - Service
Account string - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - service
Account String - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - service
Account string - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - service_
account str - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - service
Account String - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
Look up Existing V2FolderNotificationConfig Resource
Get an existing V2FolderNotificationConfig 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?: V2FolderNotificationConfigState, opts?: CustomResourceOptions): V2FolderNotificationConfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config_id: Optional[str] = None,
description: Optional[str] = None,
folder: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
pubsub_topic: Optional[str] = None,
service_account: Optional[str] = None,
streaming_config: Optional[V2FolderNotificationConfigStreamingConfigArgs] = None) -> V2FolderNotificationConfig
func GetV2FolderNotificationConfig(ctx *Context, name string, id IDInput, state *V2FolderNotificationConfigState, opts ...ResourceOption) (*V2FolderNotificationConfig, error)
public static V2FolderNotificationConfig Get(string name, Input<string> id, V2FolderNotificationConfigState? state, CustomResourceOptions? opts = null)
public static V2FolderNotificationConfig get(String name, Output<String> id, V2FolderNotificationConfigState 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.
- Config
Id string - This must be unique within the organization.
- Description string
- The description of the notification config (max of 1024 characters).
- Folder string
- Numerical ID of the parent folder.
- Location string
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- Name string
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - Pubsub
Topic string - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- Service
Account string - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- Streaming
Config V2FolderNotification Config Streaming Config - The config for triggering streaming-based notifications. Structure is documented below.
- Config
Id string - This must be unique within the organization.
- Description string
- The description of the notification config (max of 1024 characters).
- Folder string
- Numerical ID of the parent folder.
- Location string
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- Name string
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - Pubsub
Topic string - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- Service
Account string - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- Streaming
Config V2FolderNotification Config Streaming Config Args - The config for triggering streaming-based notifications. Structure is documented below.
- config
Id String - This must be unique within the organization.
- description String
- The description of the notification config (max of 1024 characters).
- folder String
- Numerical ID of the parent folder.
- location String
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- name String
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - pubsub
Topic String - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- service
Account String - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- streaming
Config V2FolderNotification Config Streaming Config - The config for triggering streaming-based notifications. Structure is documented below.
- config
Id string - This must be unique within the organization.
- description string
- The description of the notification config (max of 1024 characters).
- folder string
- Numerical ID of the parent folder.
- location string
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- name string
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - pubsub
Topic string - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- service
Account string - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- streaming
Config V2FolderNotification Config Streaming Config - The config for triggering streaming-based notifications. Structure is documented below.
- config_
id str - This must be unique within the organization.
- description str
- The description of the notification config (max of 1024 characters).
- folder str
- Numerical ID of the parent folder.
- location str
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- name str
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - pubsub_
topic str - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- service_
account str - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- streaming_
config V2FolderNotification Config Streaming Config Args - The config for triggering streaming-based notifications. Structure is documented below.
- config
Id String - This must be unique within the organization.
- description String
- The description of the notification config (max of 1024 characters).
- folder String
- Numerical ID of the parent folder.
- location String
- Location ID of the parent organization. If not provided, 'global' will be used as the default location.
- name String
- The resource name of this notification config, in the format
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
. - pubsub
Topic String - The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
- service
Account String - The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
- streaming
Config Property Map - The config for triggering streaming-based notifications. Structure is documented below.
Supporting Types
V2FolderNotificationConfigStreamingConfig, V2FolderNotificationConfigStreamingConfigArgs
- Filter string
Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are:
- = for all value types.
, <, >=, <= for integer values.
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
- Filter string
Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are:
- = for all value types.
, <, >=, <= for integer values.
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
- filter String
Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are:
- = for all value types.
, <, >=, <= for integer values.
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
- filter string
Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are:
- = for all value types.
, <, >=, <= for integer values.
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
- filter str
Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are:
- = for all value types.
, <, >=, <= for integer values.
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
- filter String
Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators AND and OR. Parentheses are supported, and OR has higher precedence than AND. Restrictions have the form and may have a - character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are:
- = for all value types.
, <, >=, <= for integer values.
- :, meaning substring matching, for strings. The supported value types are:
- string literals in quotes.
- integer literals without quotes.
- boolean literals true and false without quotes. See Filtering notifications for information on how to write a filter.
Import
FolderNotificationConfig can be imported using any of these accepted formats:
folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
{{folder}}/{{location}}/{{config_id}}
When using the pulumi import
command, FolderNotificationConfig can be imported using one of the formats above. For example:
$ pulumi import gcp:securitycenter/v2FolderNotificationConfig:V2FolderNotificationConfig default folders/{{folder}}/locations/{{location}}/notificationConfigs/{{config_id}}
$ pulumi import gcp:securitycenter/v2FolderNotificationConfig:V2FolderNotificationConfig default {{folder}}/{{location}}/{{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.