Class: Couchbase::Management::QueryIndexManager::DropPrimaryIndexOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/couchbase/management/query_index_manager.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize {|self| ... } ⇒ DropPrimaryIndexOptions

Returns a new instance of DropPrimaryIndexOptions.

Yield Parameters:

[View source]

228
229
230
231
# File 'lib/couchbase/management/query_index_manager.rb', line 228

def initialize
  @ignore_if_does_not_exist = false
  yield self if block_given?
end

Instance Attribute Details

#ignore_if_does_not_existBoolean

Returns do not raise error if the index does not exist.

Returns:

  • (Boolean)

    do not raise error if the index does not exist


222
223
224
# File 'lib/couchbase/management/query_index_manager.rb', line 222

def ignore_if_does_not_exist
  @ignore_if_does_not_exist
end

#index_nameString

Returns name of the index.

Returns:

  • (String)

    name of the index


219
220
221
# File 'lib/couchbase/management/query_index_manager.rb', line 219

def index_name
  @index_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


225
226
227
# File 'lib/couchbase/management/query_index_manager.rb', line 225

def timeout
  @timeout
end