Sha256: 78a073328e2af9dd4bf0e57e8c9b965b2f4b1ca1270771316f50d36f5ca67eb3
Contents?: true
Size: 537 Bytes
Versions: 116
Compression:
Stored size: 537 Bytes
Contents
module Fog module Rackspace class Identity class Real def update_user(user_id, username, email, enabled, options = {}) data = { 'user' => { 'username' => username, 'email' => email, 'enabled' => enabled } } request( :body => Fog::JSON.encode(data), :expects => [200, 203], :method => 'POST', :path => "users/#{user_id}" ) end end end end end
Version data entries
116 entries across 114 versions & 16 rubygems