Class: Couchbase::Management::UserManager::GetAllUsersOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::UserManager::GetAllUsersOptions
- 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| ... } ⇒ GetAllUsersOptions
constructor
A new instance of GetAllUsersOptions.
Constructor Details
#initialize {|_self| ... } ⇒ GetAllUsersOptions
Returns a new instance of GetAllUsersOptions.
134 135 136 137 |
# File 'lib/couchbase/management/user_manager.rb', line 134 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
.
129 130 131 |
# File 'lib/couchbase/management/user_manager.rb', line 129 def domain_name @domain_name end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
132 133 134 |
# File 'lib/couchbase/management/user_manager.rb', line 132 def timeout @timeout end |