Class: Couchbase::Management::Options::Analytics::DropIndex

Inherits:
Options::Base
  • Object
show all
Defined in:
lib/couchbase/management/analytics_index_manager.rb

Overview

Instance Attribute Summary collapse

Attributes inherited from Options::Base

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Constructor Details

#initialize(ignore_if_does_not_exist: false, dataverse_name: nil, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ DropIndex

Creates an instance of options for AnalyticsIndexManager#drop_index

Parameters:

  • ignore_if_does_not_exist (Boolean) (defaults to: false)

    if true, the exception Error::DatasetNotFound will not be raised if the dataset with the specified name does not exist.

  • dataverse_name (String) (defaults to: nil)

    the name of the dataverse to use (defaults to nil)

  • timeout (Integer, #in_milliseconds, nil) (defaults to: nil)

    the time in milliseconds allowed for the operation to complete

  • retry_strategy (Proc, nil) (defaults to: nil)

    the custom retry strategy, if set

  • client_context (Hash, nil) (defaults to: nil)

    the client context data, if set

  • parent_span (Span, nil) (defaults to: nil)

    if set holds the parent span, that should be used for this request

Yield Parameters:



248
249
250
251
252
253
254
255
256
257
258
# File 'lib/couchbase/management/analytics_index_manager.rb', line 248

def initialize(ignore_if_does_not_exist: false,
               dataverse_name: nil,
               timeout: nil,
               retry_strategy: nil,
               client_context: nil,
               parent_span: nil)
  super(timeout: timeout, retry_strategy: retry_strategy, client_context: client_context, parent_span: parent_span)
  @ignore_if_does_not_exist = ignore_if_does_not_exist
  @dataverse_name = dataverse_name
  yield self if block_given?
end

Instance Attribute Details

#dataverse_nameString

Returns:

  • (String)


234
235
236
# File 'lib/couchbase/management/analytics_index_manager.rb', line 234

def dataverse_name
  @dataverse_name
end

#ignore_if_does_not_existBoolean

Returns:

  • (Boolean)


233
234
235
# File 'lib/couchbase/management/analytics_index_manager.rb', line 233

def ignore_if_does_not_exist
  @ignore_if_does_not_exist
end