Class: Google::Cloud::Storage::Bucket::Updater

Inherits:
Google::Cloud::Storage::Bucket show all
Defined in:
lib/google/cloud/storage/bucket.rb

Overview

Yielded to a block to accumulate changes for a patch request.

Instance Attribute Summary collapse

Attributes inherited from Google::Cloud::Storage::Bucket

#user_project

Instance Method Summary collapse

Methods inherited from Google::Cloud::Storage::Bucket

#acl, #api_url, #create_file, #created_at, #default_acl, #delete, #file, #files, #id, #kind, #location, #logging_bucket, #logging_bucket=, #logging_prefix, #logging_prefix=, #name, #policy, #policy=, #post_object, #reload!, #requester_pays, #requester_pays=, #signed_url, #storage_class, #test_permissions, #update, #versioning=, #versioning?, #website_404, #website_404=, #website_main, #website_main=

Constructor Details

#initialize(gapi) ⇒ Updater

Create an Updater object.



1183
1184
1185
1186
1187
1188
# File 'lib/google/cloud/storage/bucket.rb', line 1183

def initialize gapi
  @updates = []
  @gapi = gapi
  @labels = @gapi.labels.to_h.dup
  @cors_builder = nil
end

Instance Attribute Details

#updatesObject (readonly)

Returns the value of attribute updates



1180
1181
1182
# File 'lib/google/cloud/storage/bucket.rb', line 1180

def updates
  @updates
end

Instance Method Details

#cors {|@cors_builder| ... } ⇒ Object

Yields:

  • (@cors_builder)


1212
1213
1214
1215
1216
1217
# File 'lib/google/cloud/storage/bucket.rb', line 1212

def cors
  # Same as Bucket#cors, but not frozen
  @cors_builder ||= Bucket::Cors.from_gapi @gapi.cors_configurations
  yield @cors_builder if block_given?
  @cors_builder
end

#labelsObject

A hash of user-provided labels. Changes are allowed.



1192
1193
1194
# File 'lib/google/cloud/storage/bucket.rb', line 1192

def labels
  @labels
end

#labels=(labels) ⇒ Object

Updates the hash of user-provided labels.



1198
1199
1200
1201
1202
# File 'lib/google/cloud/storage/bucket.rb', line 1198

def labels= labels
  @labels = labels
  @gapi.labels = @labels
  patch_gapi! :labels
end