# File lib/fog/identity/openstack/v2/requests/update_user.rb, line 18
          def update_user(user_id, options)
            response = Excon::Response.new
            if user = data[:users][user_id]
              if options['name']
                user['name'] = options['name']
              end
              response.status = 200
              response
            else
              raise Fog::Identity::OpenStack::NotFound
            end
          end