Class: Couchbase::Management::UserManager::DropUserOptions

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of DropUserOptions.

Yield Parameters:



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

def initialize
  @domain = :local
  yield self if block_given?
end

Instance Attribute Details

#domain:local, :external

Returns Name of the user’s domain. Defaults to :local.

Returns:

  • (:local, :external)

    Name of the user’s domain. Defaults to :local



213
214
215
# File 'lib/couchbase/management/user_manager.rb', line 213

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



216
217
218
# File 'lib/couchbase/management/user_manager.rb', line 216

def timeout
  @timeout
end