Class/Module Index [+]

Quicksearch

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

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/iam/get_user_policy.rb, line 13
def end_element(name)
  case name
  when 'UserName', 'PolicyName'
    @response['Policy'][name] = value
  when 'PolicyDocument'
    @response['Policy'][name] = if decoded_string = URI.decode(value)
                        Fog::JSON.decode(decoded_string) rescue value
                      else
                        value
                      end
  when 'RequestId'
    @response[name] = value
  end
end
reset() click to toggle source

docs.amazonwebservices.com/IAM/latest/APIReference/API_GetUserPolicy.html

# File lib/fog/aws/parsers/iam/get_user_policy.rb, line 9
def reset
  @response = { 'Policy' => {} }
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.