Class: Couchbase::Management::UserManager::DropUserOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::UserManager::DropUserOptions
- Defined in:
- lib/couchbase/management/user_manager.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/management/user_manager.rb more...
Instance Attribute Summary collapse
-
#domain ⇒ :local, :external
Name of the user’s domain.
-
#timeout ⇒ Integer
The time in milliseconds allowed for the operation to complete.
Instance Method Summary collapse
-
#initialize {|_self| ... } ⇒ DropUserOptions
constructor
A new instance of DropUserOptions.
Constructor Details
#initialize {|_self| ... } ⇒ DropUserOptions
Returns a new instance of DropUserOptions.
206 207 208 209 |
# File 'lib/couchbase/management/user_manager.rb', line 206 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
.
201 202 203 |
# File 'lib/couchbase/management/user_manager.rb', line 201 def domain @domain end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
204 205 206 |
# File 'lib/couchbase/management/user_manager.rb', line 204 def timeout @timeout end |