Class: Google::Apis::StorageV1::Bucket::Logging
- Inherits:
-
Object
- Object
- Google::Apis::StorageV1::Bucket::Logging
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/storage_v1/classes.rb,
lib/google/apis/storage_v1/representations.rb,
lib/google/apis/storage_v1/representations.rb
Overview
The bucket's logging configuration, which defines the destination bucket and optional name prefix for the current bucket's logs.
Instance Attribute Summary collapse
-
#log_bucket ⇒ String
The destination bucket where the current bucket's logs should be placed.
-
#log_object_prefix ⇒ String
A prefix for log object names.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Logging
constructor
A new instance of Logging.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Logging
Returns a new instance of Logging.
992 993 994 |
# File 'lib/google/apis/storage_v1/classes.rb', line 992 def initialize(**args) update!(**args) end |
Instance Attribute Details
#log_bucket ⇒ String
The destination bucket where the current bucket's logs should be placed.
Corresponds to the JSON property logBucket
985 986 987 |
# File 'lib/google/apis/storage_v1/classes.rb', line 985 def log_bucket @log_bucket end |
#log_object_prefix ⇒ String
A prefix for log object names.
Corresponds to the JSON property logObjectPrefix
990 991 992 |
# File 'lib/google/apis/storage_v1/classes.rb', line 990 def log_object_prefix @log_object_prefix end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
997 998 999 1000 |
# File 'lib/google/apis/storage_v1/classes.rb', line 997 def update!(**args) @log_bucket = args[:log_bucket] if args.key?(:log_bucket) @log_object_prefix = args[:log_object_prefix] if args.key?(:log_object_prefix) end |