Class: Fog::Parsers::AWS::IAM::GetUserPolicy

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

Instance Method Summary collapse

Instance Method Details

#end_element(name) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/fog/aws/parsers/iam/get_user_policy.rb', line 12

def end_element(name)
  case name
  when 'UserName', 'PolicyName'
    @response['Policy'][name] = value
  when 'PolicyDocument'
    @response['Policy'][name] = if decoded_string = URI.decode_www_form_component(value)
                        Fog::JSON.decode(decoded_string) rescue value
                      else
                        value
                      end
  when 'RequestId'
    @response[name] = value
  end
end

#resetObject



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

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