Class: Google::Storage::Data::BucketLoggingCatalog

Inherits:
BucketLogging
  • Object
show all
Defined in:
lib/google/storage/property/bucket_logging.rb

Overview

Manages a BucketLogging nested object Data is coming from the Puppet manifest

Instance Attribute Summary

Attributes inherited from BucketLogging

#log_bucket, #log_object_prefix

Instance Method Summary collapse

Methods inherited from BucketLogging

#<=>, #==, #to_json, #to_s

Constructor Details

#initialize(args) ⇒ BucketLoggingCatalog

Returns a new instance of BucketLoggingCatalog.



95
96
97
98
99
# File 'lib/google/storage/property/bucket_logging.rb', line 95

def initialize(args)
  @log_bucket = Google::Storage::Property::String.unsafe_munge(args['log_bucket'])
  @log_object_prefix =
    Google::Storage::Property::String.unsafe_munge(args['log_object_prefix'])
end