Class: Google::Apis::StorageV1::Bucket::Versioning

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 versioning configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Versioning

Returns a new instance of Versioning.



687
688
689
# File 'generated/google/apis/storage_v1/classes.rb', line 687

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

Instance Attribute Details

#enabledBoolean Also known as: enabled?

While set to true, versioning is fully enabled for this bucket. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


684
685
686
# File 'generated/google/apis/storage_v1/classes.rb', line 684

def enabled
  @enabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



692
693
694
# File 'generated/google/apis/storage_v1/classes.rb', line 692

def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
end