Class: Couchbase::Management::QueryIndexManager::CreateIndexOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::QueryIndexManager::CreateIndexOptions
- 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.
-
#condition ⇒ String
Condition to apply to the index.
-
#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.
-
#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| ... } ⇒ CreateIndexOptions
constructor
A new instance of CreateIndexOptions.
Constructor Details
#initialize {|self| ... } ⇒ CreateIndexOptions
Returns a new instance of CreateIndexOptions.
193 194 195 196 |
# File 'lib/couchbase/management/query_index_manager.rb', line 193 def initialize @ignore_if_exists = false yield self if block_given? end |
Instance Attribute Details
#collection_name ⇒ String
Returns the name of the collection.
190 191 192 |
# File 'lib/couchbase/management/query_index_manager.rb', line 190 def collection_name @collection_name end |
#condition ⇒ String
Returns condition to apply to the index.
184 185 186 |
# File 'lib/couchbase/management/query_index_manager.rb', line 184 def condition @condition end |
#deferred ⇒ Boolean
Returns whether the index should be created as a deferred index.
178 179 180 |
# File 'lib/couchbase/management/query_index_manager.rb', line 178 def deferred @deferred end |
#ignore_if_exists ⇒ Boolean
Returns do not raise error if the index already exist.
172 173 174 |
# File 'lib/couchbase/management/query_index_manager.rb', line 172 def ignore_if_exists @ignore_if_exists end |
#num_replicas ⇒ Integer
Returns the number of replicas that this index should have.
175 176 177 |
# File 'lib/couchbase/management/query_index_manager.rb', line 175 def num_replicas @num_replicas end |
#scope_name ⇒ String
Returns the name of the scope.
187 188 189 |
# File 'lib/couchbase/management/query_index_manager.rb', line 187 def scope_name @scope_name end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
181 182 183 |
# File 'lib/couchbase/management/query_index_manager.rb', line 181 def timeout @timeout end |