Class: Couchbase::Management::UserManager::DropUserOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::UserManager::DropUserOptions
- Defined in:
- lib/couchbase/management/user_manager.rb
Instance Attribute Summary collapse
-
#domain_name ⇒ :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.
160 161 162 163 |
# File 'lib/couchbase/management/user_manager.rb', line 160 def initialize @domain_name = :local yield self if block_given? end |
Instance Attribute Details
#domain_name ⇒ :local, :external
Returns Name of the user's domain. Defaults to :local
.
155 156 157 |
# File 'lib/couchbase/management/user_manager.rb', line 155 def domain_name @domain_name end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
158 159 160 |
# File 'lib/couchbase/management/user_manager.rb', line 158 def timeout @timeout end |