Class: Couchbase::Management::CollectionSpec
- Inherits:
-
Object
- Object
- Couchbase::Management::CollectionSpec
- Defined in:
- lib/couchbase/management/collection_manager.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/management/collection_manager.rb more...
Instance Attribute Summary collapse
-
#history ⇒ Boolean?
Whether history retention is enabled for this collection.
-
#max_expiry ⇒ Integer
Time in seconds of the expiration for new documents in the collection (set to
nil
to disable it). -
#name ⇒ String
Name of the collection.
-
#scope_name ⇒ String
Name of the scope.
Instance Method Summary collapse
-
#initialize {|self| ... } ⇒ CollectionSpec
constructor
A new instance of CollectionSpec.
Constructor Details
#initialize {|self| ... } ⇒ CollectionSpec
Returns a new instance of CollectionSpec.
465 466 467 |
# File 'lib/couchbase/management/collection_manager.rb', line 465 def initialize yield self if block_given? end |
Instance Attribute Details
#history ⇒ Boolean?
Returns whether history retention is enabled for this collection.
462 463 464 |
# File 'lib/couchbase/management/collection_manager.rb', line 462 def history @history end |
#max_expiry ⇒ Integer
Returns time in seconds of the expiration for new documents in the collection (set to nil
to disable it).
459 460 461 |
# File 'lib/couchbase/management/collection_manager.rb', line 459 def max_expiry @max_expiry end |
#name ⇒ String
Returns name of the collection.
453 454 455 |
# File 'lib/couchbase/management/collection_manager.rb', line 453 def name @name end |
#scope_name ⇒ String
Returns name of the scope.
456 457 458 |
# File 'lib/couchbase/management/collection_manager.rb', line 456 def scope_name @scope_name end |