Class: Couchbase::Management::AnalyticsIndexManager::DropDataverseOptions

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize {|| ... } ⇒ DropDataverseOptions

Returns a new instance of DropDataverseOptions.

Yield Parameters:

[View source]

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_existBoolean

Returns ignore if the dataverse does not exists.

Returns:

  • (Boolean)

    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

#timeoutInteger

Returns the time in milliseconds allowed for the operation to complete.

Returns:

  • (Integer)

    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