Class/Module Index [+]

Quicksearch

Fog::Parsers::AWS::IAM::ListGroups

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/aws/parsers/iam/list_groups.rb, line 13
def end_element(name)
  case name
  when 'Arn', 'GroupId', 'GroupName', 'Path'
    @group[name] = value
  when 'member'
    @response['Groups'] << @group
    @group = {}
  when 'IsTruncated'
    response[name] = (value == 'true')
  when 'Marker', 'RequestId'
    response[name] = value
  end
end
reset() click to toggle source
# File lib/fog/aws/parsers/iam/list_groups.rb, line 8
def reset
  @group = {}
  @response = { 'Groups' => [] }
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.