Class: Fog::Parsers::AWS::IAM::SinglePolicy

Inherits:
PolicyParser
  • Object
show all
Defined in:
lib/fog/aws/parsers/iam/single_policy.rb

Instance Method Summary collapse

Methods inherited from PolicyParser

#fresh_policy, #start_element

Instance Method Details

#end_element(name) ⇒ Object



16
17
18
19
20
21
22
# 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

#finished_policy(policy) ⇒ Object



12
13
14
# File 'lib/fog/aws/parsers/iam/single_policy.rb', line 12

def finished_policy(policy)
  @response['Policy'] = policy
end

#resetObject



7
8
9
10
# File 'lib/fog/aws/parsers/iam/single_policy.rb', line 7

def reset
  super
  @response = { 'Policy' => {} }
end