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 ⇒ :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.
193 194 195 196 |
# File 'lib/couchbase/management/user_manager.rb', line 193 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
.
187 188 189 |
# File 'lib/couchbase/management/user_manager.rb', line 187 def domain @domain end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
190 191 192 |
# File 'lib/couchbase/management/user_manager.rb', line 190 def timeout @timeout end |