Class: Couchbase::Management::Options::Analytics::ConnectLink

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(link_name: "Local", force: false, dataverse_name: nil, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ ConnectLink

Creates an instance of options for AnalyticsIndexManager#connect_link

Parameters:

  • link_name (String) (defaults to: "Local")

    the name of the link

  • force (Boolean) (defaults to: false)

    if true, link creation will be forced even if the bucket UUID changed, for example due to the bucket being deleted and recreated

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



308
309
310
311
312
313
314
315
316
317
318
319
320
# File 'lib/couchbase/management/analytics_index_manager.rb', line 308

def initialize(link_name: "Local",
               force: 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)
  @link_name = link_name
  @force = force
  @dataverse_name = dataverse_name
  yield self if block_given?
end

Instance Attribute Details

#dataverse_nameString

Returns:

  • (String)


293
294
295
# File 'lib/couchbase/management/analytics_index_manager.rb', line 293

def dataverse_name
  @dataverse_name
end

#forceBoolean

Returns:

  • (Boolean)


292
293
294
# File 'lib/couchbase/management/analytics_index_manager.rb', line 292

def force
  @force
end

Returns:

  • (String)


291
292
293
# File 'lib/couchbase/management/analytics_index_manager.rb', line 291

def link_name
  @link_name
end