Class: Couchbase::Management::AnalyticsIndexManager::DropDataverseOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::AnalyticsIndexManager::DropDataverseOptions
- Defined in:
- lib/couchbase/management/analytics_index_manager.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/management/analytics_index_manager.rb more...
Instance Attribute Summary collapse
-
#ignore_if_does_not_exist ⇒ Boolean
Ignore if the dataverse does not exists.
-
#timeout ⇒ Integer
The time in milliseconds allowed for the operation to complete.
Instance Method Summary collapse
-
#initialize {|| ... } ⇒ DropDataverseOptions
constructor
A new instance of DropDataverseOptions.
Constructor Details
#initialize {|| ... } ⇒ DropDataverseOptions
Returns a new instance of DropDataverseOptions.
247 248 249 250 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 247 def initialize @ignore_if_exists = false yield self if block_given? end |
Instance Attribute Details
#ignore_if_does_not_exist ⇒ Boolean
Returns ignore if the dataverse does not exists.
241 242 243 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 241 def ignore_if_does_not_exist @ignore_if_does_not_exist end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
244 245 246 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 244 def timeout @timeout end |