class Fog::Parsers::AWS::IAM::UpdateUser

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/iam/update_user.rb, line 12
def end_element(name)
  case name
  when 'Arn', 'UserId', 'UserName', 'Path'
    @response['User'][name] = value
  when 'RequestId'
    @response[name] = value
  end
end
reset() click to toggle source

docs.amazonwebservices.com/IAM/latest/APIReference/index.html?API_UpdateUser.html

# File lib/fog/aws/parsers/iam/update_user.rb, line 8
def reset
  @response = { 'User' => {} }
end