Class: Google::Apis::StorageV1::Bucket::Logging

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/storage_v1/classes.rb,
generated/google/apis/storage_v1/representations.rb,
generated/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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Logging

Returns a new instance of Logging



496
497
498
# File 'generated/google/apis/storage_v1/classes.rb', line 496

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#log_bucketString

The destination bucket where the current bucket's logs should be placed. Corresponds to the JSON property logBucket

Returns:

  • (String)


489
490
491
# File 'generated/google/apis/storage_v1/classes.rb', line 489

def log_bucket
  @log_bucket
end

#log_object_prefixString

A prefix for log object names. Corresponds to the JSON property logObjectPrefix

Returns:

  • (String)


494
495
496
# File 'generated/google/apis/storage_v1/classes.rb', line 494

def log_object_prefix
  @log_object_prefix
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



501
502
503
504
# File 'generated/google/apis/storage_v1/classes.rb', line 501

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