1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/parsers/iam/basic.rb

20 lines
296 B
Ruby
Raw Normal View History

2010-10-28 17:50:46 -07:00
module Fog
module Parsers
module AWS
module IAM
class Basic < Fog::Parsers::Base
def end_element(name)
case name
when 'RequestId'
2010-10-28 17:50:46 -07:00
@response[name] = @value
end
end
end
end
end
end
end