Class/Module Index [+]

Quicksearch

Fog::Parsers::AWS::IAM::ListInstanceProfiles

Public Instance Methods

end_element(name) click to toggle source
# 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
finished_instance_profile(profile) click to toggle source
# File lib/fog/aws/parsers/iam/list_instance_profiles.rb, line 15
def finished_instance_profile(profile)
  @response['InstanceProfiles'] << profile
end
reset() click to toggle source
# File lib/fog/aws/parsers/iam/list_instance_profiles.rb, line 9
def reset
  super
  @response = {'InstanceProfiles' => []}
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.