Class: Couchbase::Management::AnalyticsIndexManager::DisconnectLinkOptions

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 {|| ... } ⇒ DisconnectLinkOptions

Returns a new instance of DisconnectLinkOptions.

Yield Parameters:

[View source]

377
378
379
380
# File 'lib/couchbase/management/analytics_index_manager.rb', line 377

def initialize
  @link_name = "Local"
  yield self if block_given?
end

Instance Attribute Details

#dataverse_nameString

Returns The name of the dataverse to use (defaults to nil).

Returns:

  • (String)

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


371
372
373
# File 'lib/couchbase/management/analytics_index_manager.rb', line 371

def dataverse_name
  @dataverse_name
end

Returns The name of the link (defaults to “Local”).

Returns:

  • (String)

    The name of the link (defaults to “Local”)


368
369
370
# File 'lib/couchbase/management/analytics_index_manager.rb', line 368

def link_name
  @link_name
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


374
375
376
# File 'lib/couchbase/management/analytics_index_manager.rb', line 374

def timeout
  @timeout
end