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

28 lines
577 B
Ruby
Raw Normal View History

module Fog
module Parsers
module AWS
module IAM
require 'fog/aws/parsers/iam/policy_parser'
class SinglePolicy < Fog::Parsers::AWS::IAM::PolicyParser
def reset
super
@response = { 'Policy' => {} }
end
def finished_policy(policy)
@response['Policy'] = policy
end
def end_element(name)
case name
when 'RequestId'
@response[name] = value
end
super
end
end
end
end
end
end