class Fog::Parsers::AWS::IAM::SinglePolicy
Public Instance Methods
Source
# File lib/fog/aws/parsers/iam/single_policy.rb, line 16 def end_element(name) case name when 'RequestId' @response[name] = value end super end
Calls superclass method
Fog::Parsers::AWS::IAM::PolicyParser#end_element
Source
# File lib/fog/aws/parsers/iam/single_policy.rb, line 12 def finished_policy(policy) @response['Policy'] = policy end
Source
# File lib/fog/aws/parsers/iam/single_policy.rb, line 7 def reset super @response = { 'Policy' => {} } end
Calls superclass method
Fog::Parsers::AWS::IAM::PolicyParser#reset