Class: Couchbase::Management::QueryIndexManager::CreatePrimaryIndexOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::QueryIndexManager::CreatePrimaryIndexOptions
- 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.
-
#deferred ⇒ Boolean
Whether the index should be created as a deferred index.
-
#ignore_if_exists ⇒ Boolean
Do not raise error if the index already exist.
-
#index_name ⇒ String
Name of the index.
-
#num_replicas ⇒ Integer
The number of replicas that this index should have.
-
#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| ... } ⇒ CreatePrimaryIndexOptions
constructor
A new instance of CreatePrimaryIndexOptions.
Constructor Details
#initialize {|self| ... } ⇒ CreatePrimaryIndexOptions
Returns a new instance of CreatePrimaryIndexOptions.
222 223 224 225 |
# File 'lib/couchbase/management/query_index_manager.rb', line 222 def initialize @ignore_if_exists = false yield self if block_given? end |
Instance Attribute Details
#collection_name ⇒ String
Returns the name of the collection.
219 220 221 |
# File 'lib/couchbase/management/query_index_manager.rb', line 219 def collection_name @collection_name end |
#deferred ⇒ Boolean
Returns whether the index should be created as a deferred index.
210 211 212 |
# File 'lib/couchbase/management/query_index_manager.rb', line 210 def deferred @deferred end |
#ignore_if_exists ⇒ Boolean
Returns do not raise error if the index already exist.
204 205 206 |
# File 'lib/couchbase/management/query_index_manager.rb', line 204 def ignore_if_exists @ignore_if_exists end |
#index_name ⇒ String
Returns name of the index.
201 202 203 |
# File 'lib/couchbase/management/query_index_manager.rb', line 201 def index_name @index_name end |
#num_replicas ⇒ Integer
Returns the number of replicas that this index should have.
207 208 209 |
# File 'lib/couchbase/management/query_index_manager.rb', line 207 def num_replicas @num_replicas end |
#scope_name ⇒ String
Returns the name of the scope.
216 217 218 |
# File 'lib/couchbase/management/query_index_manager.rb', line 216 def scope_name @scope_name end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
213 214 215 |
# File 'lib/couchbase/management/query_index_manager.rb', line 213 def timeout @timeout end |