Class: Couchbase::Management::Options::Analytics::DropDataverse

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, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ DropDataverse

Creates an instance of options for AnalyticsIndexManager#create_dataverse

Parameters:

  • ignore_if_does_not_exist (Boolean) (defaults to: false)

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

  • 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:



71
72
73
74
75
76
77
78
79
# File 'lib/couchbase/management/analytics_index_manager.rb', line 71

def initialize(ignore_if_does_not_exist: false,
               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
  yield self if block_given?
end

Instance Attribute Details

#ignore_if_does_not_existBoolean

Returns:

  • (Boolean)


58
59
60
# File 'lib/couchbase/management/analytics_index_manager.rb', line 58

def ignore_if_does_not_exist
  @ignore_if_does_not_exist
end