Class: Google::Cloud::Storage::Notification

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/storage/notification.rb

Overview

Notification

Represents a Pub/Sub notification subscription for a Cloud Storage bucket.

See Bucket#create_notification, Bucket#notifications, and Bucket#notification.

Examples:

require "google/cloud/pubsub"
require "google/cloud/storage"

pubsub = Google::Cloud::Pubsub.new
topic = pubsub.create_topic "my-topic"
topic.policy do |p|
  p.add "roles/pubsub.publisher",
        "serviceAccount:my-project" \
        "@gs-project-accounts.iam.gserviceaccount.com"
end

storage = Google::Cloud::Storage.new
bucket = storage.bucket "my-bucket"

notification = bucket.create_notification topic.name

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#bucketString (readonly)

The name of the Bucket to which this notification belongs.

Returns:

  • (String)

    the current value of bucket



53
54
55
# File 'lib/google/cloud/storage/notification.rb', line 53

def bucket
  @bucket
end

Instance Method Details

#api_urlObject

A URL that can be used to access the notification using the REST API.



93
94
95
# File 'lib/google/cloud/storage/notification.rb', line 93

def api_url
  @gapi.self_link
end

#custom_attrsObject

The custom attributes of this notification. An optional list of additional attributes to attach to each Cloud Pub/Sub message published for this notification subscription.



101
102
103
# File 'lib/google/cloud/storage/notification.rb', line 101

def custom_attrs
  @gapi.custom_attributes
end

#deleteBoolean

Permanently deletes the notification.

The API call to delete the notification may be retried under certain conditions. See Google::Cloud#storage to control this behavior.

Examples:

require "google/cloud/storage"

storage = Google::Cloud::Storage.new

bucket = storage.bucket "my-bucket"
notification = bucket.notification "1"
notification.delete

Returns:

  • (Boolean)

    Returns true if the notification was deleted.



188
189
190
191
192
# File 'lib/google/cloud/storage/notification.rb', line 188

def delete
  ensure_service!
  @service.delete_notification bucket, id, user_project: @user_project
  true
end

#event_typesObject

The event types of this notification. If present, messages will only be sent for the listed event types. If empty, messages will be sent for all event types.

The following is a list of event types currently supported by Cloud Storage:

  • OBJECT_FINALIZE - Sent when a new object (or a new generation of an existing object) is successfully created in the bucket. This includes copying or rewriting an existing object. A failed upload does not trigger this event.
  • OBJECT_METADATA_UPDATE - Sent when the metadata of an existing object changes.
  • OBJECT_DELETE - Sent when an object has been permanently deleted. This includes objects that are overwritten or are deleted as part of the bucket's lifecycle configuration. For buckets with object versioning enabled, this is not sent when an object is archived (see OBJECT_ARCHIVE), even if archival occurs via the File#delete method.
  • OBJECT_ARCHIVE - Only sent when a bucket has enabled object versioning. This event indicates that the live version of an object has become an archived version, either because it was archived or because it was overwritten by the upload of an object of the same name.

Important: Additional event types may be released later. Client code should either safely ignore unrecognized event types, or else explicitly specify in their notification configuration which event types they are prepared to accept.



136
137
138
# File 'lib/google/cloud/storage/notification.rb', line 136

def event_types
  @gapi.event_types
end

#idObject

The ID of the notification.



87
88
89
# File 'lib/google/cloud/storage/notification.rb', line 87

def id
  @gapi.id
end

#kindObject

The kind of item this is. For notifications, this is always storage#notification.



81
82
83
# File 'lib/google/cloud/storage/notification.rb', line 81

def kind
  @gapi.kind
end

#payloadObject

The desired content of the Pub/Sub message payload. Acceptable values are:

  • JSON_API_V1 - The payload will be a UTF-8 string containing the resource representation of the file's metadata.
  • NONE - No payload is included with the notification.


159
160
161
# File 'lib/google/cloud/storage/notification.rb', line 159

def payload
  @gapi.payload_format
end

#prefixObject

The file name prefix of this notification. If present, only apply this notification configuration to file names that begin with this prefix.



145
146
147
# File 'lib/google/cloud/storage/notification.rb', line 145

def prefix
  @gapi.object_name_prefix
end

#topicObject

The Cloud Pub/Sub topic to which this subscription publishes. Formatted as: //pubsub.googleapis.com/projects/{project-id}/topics/{my-topic}



167
168
169
# File 'lib/google/cloud/storage/notification.rb', line 167

def topic
  @gapi.topic
end