Sha256: 4e94d7bdfdf7458af13f8f23f3d1e9c013cd61001a0e76762d46c81f9cd28979

Contents?: true

Size: 678 Bytes

Versions: 114

Compression:

Stored size: 678 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module IAM

        class ListGroups < Fog::Parsers::Base

          def reset
            @group = {}
            @response = { 'Groups' => [] }
          end

          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

        end

      end
    end
  end
end

Version data entries

114 entries across 114 versions & 19 rubygems

Version Path
fog-1.10.1 lib/fog/aws/parsers/iam/list_groups.rb
fog-parser-fix-1.6.1 lib/fog/aws/parsers/iam/list_groups.rb
fog-test-again-1.6.0 lib/fog/aws/parsers/iam/list_groups.rb
fog-test-me-1.10.0 lib/fog/aws/parsers/iam/list_groups.rb
fog-parser-fix-1.6.0 lib/fog/aws/parsers/iam/list_groups.rb
fog-1.10.0 lib/fog/aws/parsers/iam/list_groups.rb
fog-1.9.0 lib/fog/aws/parsers/iam/list_groups.rb
fog-maestrodev-1.8.0.20130114204828 lib/fog/aws/parsers/iam/list_groups.rb
fog-maestrodev-1.8.0.20130111070250 lib/fog/aws/parsers/iam/list_groups.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/aws/parsers/iam/list_groups.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/aws/parsers/iam/list_groups.rb
fog-sgonyea-1.8.1 lib/fog/aws/parsers/iam/list_groups.rb
fog-1.8.0 lib/fog/aws/parsers/iam/list_groups.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/aws/parsers/iam/list_groups.rb
fog-1.7.0 lib/fog/aws/parsers/iam/list_groups.rb
fog-1.6.0 lib/fog/aws/parsers/iam/list_groups.rb
fog-1.5.0 lib/fog/aws/parsers/iam/list_groups.rb
rackspace-fog-1.4.2 lib/rackspace-fog/aws/parsers/iam/list_groups.rb
fog-1.4.0 lib/fog/aws/parsers/iam/list_groups.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/iam/list_groups.rb