Class: Couchbase::Management::QueryIndexManager::DropPrimaryIndexOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::QueryIndexManager::DropPrimaryIndexOptions
- Defined in:
- lib/couchbase/management/query_index_manager.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/management/query_index_manager.rb more...
Instance Attribute Summary collapse
-
#collection_name ⇒ String
The name of the collection.
-
#ignore_if_does_not_exist ⇒ Boolean
Do not raise error if the index does not exist.
-
#index_name ⇒ String
Name of the index.
-
#scope_name ⇒ String
The name of the scope.
-
#timeout ⇒ Integer
The time in milliseconds allowed for the operation to complete.
Instance Method Summary collapse
-
#initialize {|self| ... } ⇒ DropPrimaryIndexOptions
constructor
A new instance of DropPrimaryIndexOptions.
Constructor Details
#initialize {|self| ... } ⇒ DropPrimaryIndexOptions
Returns a new instance of DropPrimaryIndexOptions.
265 266 267 268 |
# File 'lib/couchbase/management/query_index_manager.rb', line 265 def initialize @ignore_if_does_not_exist = false yield self if block_given? end |
Instance Attribute Details
#collection_name ⇒ String
Returns the name of the collection.
262 263 264 |
# File 'lib/couchbase/management/query_index_manager.rb', line 262 def collection_name @collection_name end |
#ignore_if_does_not_exist ⇒ Boolean
Returns do not raise error if the index does not exist.
253 254 255 |
# File 'lib/couchbase/management/query_index_manager.rb', line 253 def ignore_if_does_not_exist @ignore_if_does_not_exist end |
#index_name ⇒ String
Returns name of the index.
250 251 252 |
# File 'lib/couchbase/management/query_index_manager.rb', line 250 def index_name @index_name end |
#scope_name ⇒ String
Returns the name of the scope.
259 260 261 |
# File 'lib/couchbase/management/query_index_manager.rb', line 259 def scope_name @scope_name end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
256 257 258 |
# File 'lib/couchbase/management/query_index_manager.rb', line 256 def timeout @timeout end |