Class: Couchbase::Management::UserManager::UpsertUserOptions
- Inherits:
-
Object
- Object
- Couchbase::Management::UserManager::UpsertUserOptions
- 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| ... } ⇒ UpsertUserOptions
constructor
A new instance of UpsertUserOptions.
Constructor Details
#initialize {|_self| ... } ⇒ UpsertUserOptions
Returns a new instance of UpsertUserOptions.
147 148 149 150 |
# File 'lib/couchbase/management/user_manager.rb', line 147 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
.
142 143 144 |
# File 'lib/couchbase/management/user_manager.rb', line 142 def domain_name @domain_name end |
#timeout ⇒ Integer
Returns the time in milliseconds allowed for the operation to complete.
145 146 147 |
# File 'lib/couchbase/management/user_manager.rb', line 145 def timeout @timeout end |