Class/Module Index [+]

Quicksearch

Fog::Parsers::AWS::IAM::ListRoles

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/iam/list_roles.rb, line 18
def end_element(name)
  case name
  when 'RequestId', 'Marker'
    @response[name] = value
  when 'IsTruncated'
    @response[name] = (value == 'true')
  end
  super
end
finished_role(role) click to toggle source
# File lib/fog/aws/parsers/iam/list_roles.rb, line 14
def finished_role(role)
  @response['Roles'] << role
end
reset() click to toggle source
# File lib/fog/aws/parsers/iam/list_roles.rb, line 9
def reset
  super
  @response = { 'Roles' => [] }
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.