NotificationArgs

data class NotificationArgs(val bucket: Output<String>? = null, val customAttributes: Output<Map<String, String>>? = null, val eventTypes: Output<List<String>>? = null, val objectNamePrefix: Output<String>? = null, val payloadFormat: Output<String>? = null, val topic: Output<String>? = null) : ConvertibleToJava<NotificationArgs>

Creates a new notification configuration on a specified bucket, establishing a flow of event notifications from GCS to a Cloud Pub/Sub topic. For more information see the official documentation and API. In order to enable notifications, a special Google Cloud Storage service account unique to the project must exist and have the IAM permission "projects.topics.publish" for a Cloud Pub/Sub topic in the project. This service account is not created automatically when a project is created. To ensure the service account exists and obtain its email address for use in granting the correct IAM permission, use the gcp&#46;storage&#46;getProjectServiceAccount datasource's email_address value, and see below for an example of enabling notifications by granting the correct IAM permission. See the notifications documentation for more details.

NOTE: This resource can affect your storage IAM policy. If you are using this in the same config as your storage IAM policy resources, consider making this resource dependent on those IAM resources via depends_on. This will safeguard against errors due to IAM race conditions.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
// Enable notifications by giving the correct IAM permission to the unique service account.
const gcsAccount = gcp.storage.getProjectServiceAccount({});
const topic = new gcp.pubsub.Topic("topic", {name: "default_topic"});
const binding = new gcp.pubsub.TopicIAMBinding("binding", {
topic: topic.id,
role: "roles/pubsub.publisher",
members: [gcsAccount&#46;then(gcsAccount => `serviceAccount:${gcsAccount&#46;emailAddress}`)],
});
// End enabling notifications
const bucket = new gcp.storage.Bucket("bucket", {
name: "default_bucket",
location: "US",
});
const notification = new gcp.storage.Notification("notification", {
bucket: bucket.name,
payloadFormat: "JSON_API_V1",
topic: topic.id,
eventTypes: [
"OBJECT_FINALIZE",
"OBJECT_METADATA_UPDATE",
],
customAttributes: {
"new-attribute": "new-attribute-value",
},
}, {
dependsOn: [binding],
});
import pulumi
import pulumi_gcp as gcp
# Enable notifications by giving the correct IAM permission to the unique service account.
gcs_account = gcp.storage.get_project_service_account()
topic = gcp.pubsub.Topic("topic", name="default_topic")
binding = gcp.pubsub.TopicIAMBinding("binding",
topic=topic.id,
role="roles/pubsub.publisher",
members=[f"serviceAccount:{gcs_account&#46;email_address}"])
# End enabling notifications
bucket = gcp.storage.Bucket("bucket",
name="default_bucket",
location="US")
notification = gcp.storage.Notification("notification",
bucket=bucket.name,
payload_format="JSON_API_V1",
topic=topic.id,
event_types=[
"OBJECT_FINALIZE",
"OBJECT_METADATA_UPDATE",
],
custom_attributes={
"new-attribute": "new-attribute-value",
},
opts = pulumi.ResourceOptions(depends_on=[binding]))
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
// Enable notifications by giving the correct IAM permission to the unique service account.
var gcsAccount = Gcp.Storage.GetProjectServiceAccount.Invoke();
var topic = new Gcp.PubSub.Topic("topic", new()
{
Name = "default_topic",
});
var binding = new Gcp.PubSub.TopicIAMBinding("binding", new()
{
Topic = topic.Id,
Role = "roles/pubsub.publisher",
Members = new[]
{
$"serviceAccount:{gcsAccount.Apply(getProjectServiceAccountResult => getProjectServiceAccountResult.EmailAddress)}",
},
});
// End enabling notifications
var bucket = new Gcp.Storage.Bucket("bucket", new()
{
Name = "default_bucket",
Location = "US",
});
var notification = new Gcp.Storage.Notification("notification", new()
{
Bucket = bucket.Name,
PayloadFormat = "JSON_API_V1",
Topic = topic.Id,
EventTypes = new[]
{
"OBJECT_FINALIZE",
"OBJECT_METADATA_UPDATE",
},
CustomAttributes =
{
{ "new-attribute", "new-attribute-value" },
},
}, new CustomResourceOptions
{
DependsOn =
{
binding,
},
});
});
package main
import (
"fmt"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/pubsub"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Enable notifications by giving the correct IAM permission to the unique service account.
gcsAccount, err := storage.GetProjectServiceAccount(ctx, &storage.GetProjectServiceAccountArgs{}, nil)
if err != nil {
return err
}
topic, err := pubsub.NewTopic(ctx, "topic", &pubsub.TopicArgs{
Name: pulumi.String("default_topic"),
})
if err != nil {
return err
}
binding, err := pubsub.NewTopicIAMBinding(ctx, "binding", &pubsub.TopicIAMBindingArgs{
Topic: topic.ID(),
Role: pulumi.String("roles/pubsub.publisher"),
Members: pulumi.StringArray{
pulumi.Sprintf("serviceAccount:%v", gcsAccount.EmailAddress),
},
})
if err != nil {
return err
}
// End enabling notifications
bucket, err := storage.NewBucket(ctx, "bucket", &storage.BucketArgs{
Name: pulumi.String("default_bucket"),
Location: pulumi.String("US"),
})
if err != nil {
return err
}
_, err = storage.NewNotification(ctx, "notification", &storage.NotificationArgs{
Bucket: bucket.Name,
PayloadFormat: pulumi.String("JSON_API_V1"),
Topic: topic.ID(),
EventTypes: pulumi.StringArray{
pulumi.String("OBJECT_FINALIZE"),
pulumi.String("OBJECT_METADATA_UPDATE"),
},
CustomAttributes: pulumi.StringMap{
"new-attribute": pulumi.String("new-attribute-value"),
},
}, pulumi.DependsOn([]pulumi.Resource{
binding,
}))
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.storage.StorageFunctions;
import com.pulumi.gcp.storage.inputs.GetProjectServiceAccountArgs;
import com.pulumi.gcp.pubsub.Topic;
import com.pulumi.gcp.pubsub.TopicArgs;
import com.pulumi.gcp.pubsub.TopicIAMBinding;
import com.pulumi.gcp.pubsub.TopicIAMBindingArgs;
import com.pulumi.gcp.storage.Bucket;
import com.pulumi.gcp.storage.BucketArgs;
import com.pulumi.gcp.storage.Notification;
import com.pulumi.gcp.storage.NotificationArgs;
import com.pulumi.resources.CustomResourceOptions;
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) {
// Enable notifications by giving the correct IAM permission to the unique service account.
final var gcsAccount = StorageFunctions.getProjectServiceAccount(GetProjectServiceAccountArgs.builder()
.build());
var topic = new Topic("topic", TopicArgs.builder()
.name("default_topic")
.build());
var binding = new TopicIAMBinding("binding", TopicIAMBindingArgs.builder()
.topic(topic.id())
.role("roles/pubsub.publisher")
.members(String.format("serviceAccount:%s", gcsAccount.emailAddress()))
.build());
// End enabling notifications
var bucket = new Bucket("bucket", BucketArgs.builder()
.name("default_bucket")
.location("US")
.build());
var notification = new Notification("notification", NotificationArgs.builder()
.bucket(bucket.name())
.payloadFormat("JSON_API_V1")
.topic(topic.id())
.eventTypes(
"OBJECT_FINALIZE",
"OBJECT_METADATA_UPDATE")
.customAttributes(Map.of("new-attribute", "new-attribute-value"))
.build(), CustomResourceOptions.builder()
.dependsOn(binding)
.build());
}
}
resources:
notification:
type: gcp:storage:Notification
properties:
bucket: ${bucket.name}
payloadFormat: JSON_API_V1
topic: ${topic.id}
eventTypes:
- OBJECT_FINALIZE
- OBJECT_METADATA_UPDATE
customAttributes:
new-attribute: new-attribute-value
options:
dependsOn:
- ${binding}
binding:
type: gcp:pubsub:TopicIAMBinding
properties:
topic: ${topic.id}
role: roles/pubsub.publisher
members:
- serviceAccount:${gcsAccount.emailAddress}
# End enabling notifications
bucket:
type: gcp:storage:Bucket
properties:
name: default_bucket
location: US
topic:
type: gcp:pubsub:Topic
properties:
name: default_topic
variables:
# Enable notifications by giving the correct IAM permission to the unique service account.
gcsAccount:
fn::invoke:
function: gcp:storage:getProjectServiceAccount
arguments: {}

Import

Storage notifications can be imported using any of these accepted formats:

  • {{bucket_name}}/notificationConfigs/{{id}} When using the pulumi import command, Storage notifications can be imported using one of the formats above. For example:

$ pulumi import gcp:storage/notification:Notification default {{bucket_name}}/notificationConfigs/{{id}}

Constructors

Link copied to clipboard
constructor(bucket: Output<String>? = null, customAttributes: Output<Map<String, String>>? = null, eventTypes: Output<List<String>>? = null, objectNamePrefix: Output<String>? = null, payloadFormat: Output<String>? = null, topic: Output<String>? = null)

Properties

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

The name of the bucket.

Link copied to clipboard
val customAttributes: Output<Map<String, String>>? = null

A set of key/value attribute pairs to attach to each Cloud PubSub message published for this notification subscription

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

List of event type filters for this notification config. If not specified, Cloud Storage will send notifications for all event types. The valid types are: "OBJECT_FINALIZE", "OBJECT_METADATA_UPDATE", "OBJECT_DELETE", "OBJECT_ARCHIVE"

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

Specifies a prefix path filter for this notification config. Cloud Storage will only send notifications for objects in this bucket whose names begin with the specified prefix.

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

The desired content of the Payload. One of "JSON_API_V1" or "NONE".

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

The Cloud PubSub topic to which this subscription publishes. Expects either the topic name, assumed to belong to the default GCP provider project, or the project-level name, i.e. projects/my-gcp-project/topics/my-topic or my-topic. If the project is not set in the provider, you will need to use the project-level name.

Functions

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