# File lib/fog/aws/parsers/iam/list_instance_profiles.rb, line 19 def end_element(name) case name when 'RequestId', 'Marker' @response[name] = value when 'IsTruncated' @response[name] = (value == 'true') end super end
# File lib/fog/aws/parsers/iam/list_instance_profiles.rb, line 15 def finished_instance_profile(profile) @response['InstanceProfiles'] << profile end
# File lib/fog/aws/parsers/iam/list_instance_profiles.rb, line 9 def reset super @response = {'InstanceProfiles' => []} end