class Fog::Parsers::AWS::IAM::ListInstanceProfiles
Public Instance Methods
end_element(name)
click to toggle source
Calls superclass method
Fog::Parsers::AWS::IAM::BaseInstanceProfile#end_element
# File lib/fog/aws/parsers/iam/list_instance_profiles.rb, line 16 def end_element(name) case name when 'RequestId', 'Marker' @response[name] = value when 'IsTruncated' @response[name] = (value == 'true') end super end
finished_instance_profile(profile)
click to toggle source
# File lib/fog/aws/parsers/iam/list_instance_profiles.rb, line 12 def finished_instance_profile(profile) @response['InstanceProfiles'] << profile end
reset()
click to toggle source
Calls superclass method
Fog::Parsers::AWS::IAM::BaseInstanceProfile#reset
# File lib/fog/aws/parsers/iam/list_instance_profiles.rb, line 7 def reset super @response = {'InstanceProfiles' => []} end