Class: Google::Cloud::Storage::Bucket::Updater
- Inherits:
-
Google::Cloud::Storage::Bucket
- Object
- Google::Cloud::Storage::Bucket
- Google::Cloud::Storage::Bucket::Updater
- Defined in:
- lib/google/cloud/storage/bucket.rb
Overview
Yielded to a block to accumulate changes for a patch request.
Instance Attribute Summary collapse
-
#updates ⇒ Object
readonly
Returns the value of attribute updates.
Attributes inherited from Google::Cloud::Storage::Bucket
Instance Method Summary collapse
- #cors {|@cors_builder| ... } ⇒ Object
-
#initialize(gapi) ⇒ Updater
constructor
Create an Updater object.
-
#labels ⇒ Hash(String => String)
A hash of user-provided labels.
-
#labels=(labels) ⇒ Object
Updates the hash of user-provided labels.
- #lifecycle {|@lifecycle_builder| ... } ⇒ Object
Methods inherited from Google::Cloud::Storage::Bucket
#acl, #api_url, #compose, #create_file, #create_notification, #created_at, #default_acl, #default_event_based_hold=, #default_event_based_hold?, #default_kms_key, #default_kms_key=, #delete, #exists?, #file, #files, #id, #kind, #location, #location_type, #lock_retention_policy!, #logging_bucket, #logging_bucket=, #logging_prefix, #logging_prefix=, #metageneration, #name, #notification, #notifications, #policy, #policy_only=, #policy_only?, #policy_only_locked_at, #post_object, #reload!, #requester_pays, #requester_pays=, #retention_effective_at, #retention_period, #retention_period=, #retention_policy_locked?, #signed_url, #storage_class, #storage_class=, #test_permissions, #uniform_bucket_level_access=, #uniform_bucket_level_access?, #uniform_bucket_level_access_locked_at, #update, #update_policy, #versioning=, #versioning?, #website_404, #website_404=, #website_main, #website_main=
Constructor Details
#initialize(gapi) ⇒ Updater
Create an Updater object.
2239 2240 2241 2242 2243 2244 2245 |
# File 'lib/google/cloud/storage/bucket.rb', line 2239 def initialize gapi @updates = [] @gapi = gapi @labels = @gapi.labels.to_h.dup @cors_builder = nil @lifecycle_builder = nil end |
Instance Attribute Details
#updates ⇒ Object (readonly)
Returns the value of attribute updates.
2236 2237 2238 |
# File 'lib/google/cloud/storage/bucket.rb', line 2236 def updates @updates end |
Instance Method Details
#cors {|@cors_builder| ... } ⇒ Object
2275 2276 2277 2278 2279 2280 |
# File 'lib/google/cloud/storage/bucket.rb', line 2275 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 |
#labels ⇒ Hash(String => String)
A hash of user-provided labels. Changes are allowed.
2252 2253 2254 |
# File 'lib/google/cloud/storage/bucket.rb', line 2252 def labels @labels end |
#labels=(labels) ⇒ Object
Updates the hash of user-provided labels.
2261 2262 2263 2264 2265 |
# File 'lib/google/cloud/storage/bucket.rb', line 2261 def labels= labels @labels = labels @gapi.labels = @labels patch_gapi! :labels end |
#lifecycle {|@lifecycle_builder| ... } ⇒ Object
2291 2292 2293 2294 2295 2296 |
# File 'lib/google/cloud/storage/bucket.rb', line 2291 def lifecycle # Same as Bucket#lifecycle, but not frozen @lifecycle_builder ||= Bucket::Lifecycle.from_gapi @gapi.lifecycle yield @lifecycle_builder if block_given? @lifecycle_builder end |