Class: Couchbase::Management::CollectionSpec

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize {|self| ... } ⇒ CollectionSpec

Returns a new instance of CollectionSpec.

Yield Parameters:

[View source]

197
198
199
# File 'lib/couchbase/management/collection_manager.rb', line 197

def initialize
  yield self if block_given?
end

Instance Attribute Details

#max_expiryInteger

Returns time in seconds of the expiration for new documents in the collection (set to nil to disable it).

Returns:

  • (Integer)

    time in seconds of the expiration for new documents in the collection (set to nil to disable it)


194
195
196
# File 'lib/couchbase/management/collection_manager.rb', line 194

def max_expiry
  @max_expiry
end

#nameString

Returns name of the collection.

Returns:

  • (String)

    name of the collection


188
189
190
# File 'lib/couchbase/management/collection_manager.rb', line 188

def name
  @name
end

#scope_nameString

Returns name of the scope.

Returns:

  • (String)

    name of the scope


191
192
193
# File 'lib/couchbase/management/collection_manager.rb', line 191

def scope_name
  @scope_name
end