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/instance_profile.rb
2012-06-20 23:17:47 +01:00

34 lines
No EOL
618 B
Ruby

module Fog
module Parsers
module AWS
module IAM
require 'fog/aws/parsers/iam/base_instance_profile'
class InstanceProfile < Fog::Parsers::AWS::IAM::BaseInstanceProfile
def reset
super
@response = {}
end
def finished_instance_profile(profile)
@response['InstanceProfile'] = profile
end
def end_element(name)
case name
when 'RequestId'
@response[name] = value
end
super
end
end
end
end
end
end