Module: Couchbase::Management::Options::Query
- Defined in:
- lib/couchbase/management/query_index_manager.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/management/query_index_manager.rb more...
Defined Under Namespace
Classes: BuildDeferredIndexes, CreateIndex, CreatePrimaryIndex, DropIndex, DropPrimaryIndex, GetAllIndexes, WatchIndexes
Class Method Summary collapse
-
.CreateIndex(**args) ⇒ CreateIndex
Construct CreateIndex options for QueryIndexManager#create_index.
-
.CreatePrimaryIndex(**args) ⇒ CreatePrimaryIndex
Construct CreatePrimaryIndex options for QueryIndexManager#create_index.
-
.DropIndex(**args) ⇒ DropIndex
Construct DropIndex options for QueryIndexManager#drop_index.
-
.DropPrimaryIndex(**args) ⇒ DropPrimaryIndex
Construct DropPrimaryIndex options for QueryIndexManager#drop_primary_index.
-
.GetAllIndexes(**args) ⇒ GetAllIndexes
Construct GetAllIndexes options for QueryIndexManager#get_all_indexes.
Class Method Details
.CreateIndex(**args) ⇒ CreateIndex
Construct CreateIndex options for QueryIndexManager#create_index
353 354 355 |
# File 'lib/couchbase/management/query_index_manager.rb', line 353 def CreateIndex(**args) CreateIndex.new(**args) end |
.CreatePrimaryIndex(**args) ⇒ CreatePrimaryIndex
Construct CreatePrimaryIndex options for QueryIndexManager#create_index
360 361 362 |
# File 'lib/couchbase/management/query_index_manager.rb', line 360 def CreatePrimaryIndex(**args) CreatePrimaryIndex.new(**args) end |
.DropIndex(**args) ⇒ DropIndex
Construct DropIndex options for QueryIndexManager#drop_index
367 368 369 |
# File 'lib/couchbase/management/query_index_manager.rb', line 367 def DropIndex(**args) DropIndex.new(**args) end |
.DropPrimaryIndex(**args) ⇒ DropPrimaryIndex
Construct DropPrimaryIndex options for QueryIndexManager#drop_primary_index
374 375 376 |
# File 'lib/couchbase/management/query_index_manager.rb', line 374 def DropPrimaryIndex(**args) DropPrimaryIndex.new(**args) end |
.GetAllIndexes(**args) ⇒ GetAllIndexes
Construct GetAllIndexes options for QueryIndexManager#get_all_indexes
346 347 348 |
# File 'lib/couchbase/management/query_index_manager.rb', line 346 def GetAllIndexes(**args) GetAllIndexes.new(**args) end |