Class: Couchbase::Management::AnalyticsIndexManager::CreateDataverseOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::AnalyticsIndexManager::CreateDataverseOptions
- Defined in:
- lib/couchbase/management/analytics_index_manager.rb
Instance Attribute Summary collapse
-
#ignore_if_exists ⇒ Boolean
Ignore if the dataverse already exists.
-
#timeout ⇒ Integer
The time in milliseconds allowed for the operation to complete.
Instance Method Summary collapse
-
#initialize {|| ... } ⇒ CreateDataverseOptions
constructor
A new instance of CreateDataverseOptions.
Constructor Details
#initialize {|| ... } ⇒ CreateDataverseOptions
Returns a new instance of CreateDataverseOptions.
233 234 235 236 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 233 def initialize @ignore_if_exists = false yield self if block_given? end |
Instance Attribute Details
#ignore_if_exists ⇒ Boolean
Returns ignore if the dataverse already exists.
227 228 229 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 227 def ignore_if_exists @ignore_if_exists end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
230 231 232 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 230 def timeout @timeout end |