mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
618 B
Ruby
34 lines
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
|