Class: Couchbase::Management::UserManager::UpsertUserOptions

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

Returns a new instance of UpsertUserOptions.

Yield Parameters:



205
206
207
208
# File 'lib/couchbase/management/user_manager.rb', line 205

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



199
200
201
# File 'lib/couchbase/management/user_manager.rb', line 199

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



202
203
204
# File 'lib/couchbase/management/user_manager.rb', line 202

def timeout
  @timeout
end