Class: KillBillClient::Model::UserRoles
- Inherits:
-
UserRolesAttributes
- Object
- Resource
- UserRolesAttributes
- KillBillClient::Model::UserRoles
- Defined in:
- lib/killbill_client/models/user_roles.rb
Instance Method Summary collapse
- #create(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
- #destroy(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
- #list(options = {}) ⇒ Object
- #update(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
Instance Method Details
#create(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/killbill_client/models/user_roles.rb', line 5 def create(user = nil, reason = nil, comment = nil, = {}) created_user = self.class.post "#{Security::KILLBILL_API_SECURITY_PREFIX}/users", to_json, {}, { :user => user, :reason => reason, :comment => comment, }.merge() created_user.refresh() end |
#destroy(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
30 31 32 33 34 35 36 37 38 39 |
# File 'lib/killbill_client/models/user_roles.rb', line 30 def destroy(user = nil, reason = nil, comment = nil, = {}) self.class.delete "#{Security::KILLBILL_API_SECURITY_PREFIX}/users/#{username}", {}, {}, { :user => user, :reason => reason, :comment => comment, }.merge() end |
#list(options = {}) ⇒ Object
41 42 43 44 45 |
# File 'lib/killbill_client/models/user_roles.rb', line 41 def list( = {}) self.class.get "#{Security::KILLBILL_API_SECURITY_PREFIX}/users/#{username}/roles", {}, {}.merge() end |
#update(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/killbill_client/models/user_roles.rb', line 17 def update(user = nil, reason = nil, comment = nil, = {}) url = password.nil? ? "#{Security::KILLBILL_API_SECURITY_PREFIX}/users/#{username}/roles" : "#{Security::KILLBILL_API_SECURITY_PREFIX}/users/#{username}/password" updated_user = self.class.put url, to_json, {}, { :user => user, :reason => reason, :comment => comment, }.merge() updated_user.refresh() end |