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, UpdateCollection
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
177 178 179 |
# File 'lib/couchbase/management/collection_manager.rb', line 177 def CreateCollection(**args) CreateCollection.new(**args) end |
.CreateScope(**args) ⇒ CreateScope
Construct CreateScope options for CollectionManager#create_scope
163 164 165 |
# File 'lib/couchbase/management/collection_manager.rb', line 163 def CreateScope(**args) CreateScope.new(**args) end |
.DropCollection(**args) ⇒ DropCollection
Construct DropCollection options for CollectionManager#drop_collection
184 185 186 |
# File 'lib/couchbase/management/collection_manager.rb', line 184 def DropCollection(**args) DropCollection.new(**args) end |
.DropScope(**args) ⇒ DropScope
Construct DropScope options for CollectionManager#drop_scope
170 171 172 |
# File 'lib/couchbase/management/collection_manager.rb', line 170 def DropScope(**args) DropScope.new(**args) end |
.GetAllScopes(**args) ⇒ GetAllScopes
Construct GetAllScopes options for CollectionManager#get_all_scopes
156 157 158 |
# File 'lib/couchbase/management/collection_manager.rb', line 156 def GetAllScopes(**args) GetAllScopes.new(**args) end |