Module: Couchbase::Management::Options::Collection
- Defined in:
- lib/couchbase/management/collection_manager.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/management/collection_manager.rb more...
Defined Under Namespace
Classes: CreateCollection, CreateScope, DropCollection, DropScope, GetAllScopes
Class Method Summary collapse
-
.CreateCollection(**args) ⇒ CreateCollection
Construct CreateCollection options for CollectionManager#create_collection.
-
.CreateScope(**args) ⇒ CreateScope
Construct CreateScope options for CollectionManager#create_scope.
-
.DropCollection(**args) ⇒ DropCollection
Construct DropCollection options for CollectionManager#drop_collection.
-
.DropScope(**args) ⇒ DropScope
Construct DropScope options for CollectionManager#drop_scope.
-
.GetAllScopes(**args) ⇒ GetAllScopes
Construct GetAllScopes options for CollectionManager#get_all_scopes.
Class Method Details
.CreateCollection(**args) ⇒ CreateCollection
Construct CreateCollection options for CollectionManager#create_collection
146 147 148 |
# File 'lib/couchbase/management/collection_manager.rb', line 146 def CreateCollection(**args) CreateCollection.new(**args) end |
.CreateScope(**args) ⇒ CreateScope
Construct CreateScope options for CollectionManager#create_scope
132 133 134 |
# File 'lib/couchbase/management/collection_manager.rb', line 132 def CreateScope(**args) CreateScope.new(**args) end |
.DropCollection(**args) ⇒ DropCollection
Construct DropCollection options for CollectionManager#drop_collection
153 154 155 |
# File 'lib/couchbase/management/collection_manager.rb', line 153 def DropCollection(**args) DropCollection.new(**args) end |
.DropScope(**args) ⇒ DropScope
Construct DropScope options for CollectionManager#drop_scope
139 140 141 |
# File 'lib/couchbase/management/collection_manager.rb', line 139 def DropScope(**args) DropScope.new(**args) end |
.GetAllScopes(**args) ⇒ GetAllScopes
Construct GetAllScopes options for CollectionManager#get_all_scopes
125 126 127 |
# File 'lib/couchbase/management/collection_manager.rb', line 125 def GetAllScopes(**args) GetAllScopes.new(**args) end |