Class: Couchbase::Management::Options::Analytics::DropDataset

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| ... } ⇒ DropDataset

Creates an instance of options for AnalyticsIndexManager#drop_dataset

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:



151
152
153
154
155
156
157
158
159
160
161
# File 'lib/couchbase/management/analytics_index_manager.rb', line 151

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)


137
138
139
# File 'lib/couchbase/management/analytics_index_manager.rb', line 137

def dataverse_name
  @dataverse_name
end

#ignore_if_does_not_existBoolean

Returns:

  • (Boolean)


136
137
138
# File 'lib/couchbase/management/analytics_index_manager.rb', line 136

def ignore_if_does_not_exist
  @ignore_if_does_not_exist
end