Class: Couchbase::Management::AnalyticsIndexManager::DropDatasetOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::AnalyticsIndexManager::DropDatasetOptions
- 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
-
#dataverse_name ⇒ String
The name of the dataverse to use (defaults to
nil
). -
#ignore_if_does_not_exist ⇒ Boolean
Ignore if the dataset does not exists.
-
#timeout ⇒ Integer
The time in milliseconds allowed for the operation to complete.
Instance Method Summary collapse
-
#initialize {|| ... } ⇒ DropDatasetOptions
constructor
A new instance of DropDatasetOptions.
Constructor Details
#initialize {|| ... } ⇒ DropDatasetOptions
Returns a new instance of DropDatasetOptions.
284 285 286 287 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 284 def initialize @ignore_if_does_not_exist = false yield self if block_given? end |
Instance Attribute Details
#dataverse_name ⇒ String
Returns The name of the dataverse to use (defaults to nil
).
278 279 280 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 278 def dataverse_name @dataverse_name end |
#ignore_if_does_not_exist ⇒ Boolean
Returns ignore if the dataset does not exists.
275 276 277 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 275 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.
281 282 283 |
# File 'lib/couchbase/management/analytics_index_manager.rb', line 281 def timeout @timeout end |