Sha256: 467caef012959d97ae0b79469005ffa7fe6c181d66e344474c2c962fc68a63f3

Contents?: true

Size: 665 Bytes

Versions: 76

Compression:

Stored size: 665 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module IAM

        require 'fog/aws/parsers/iam/role_parser'
        class ListRoles < Fog::Parsers::AWS::IAM::RoleParser

          def reset
            super
            @response = { 'Roles' => [] }
          end

          def finished_role(role)
            @response['Roles'] << role
          end
          
          def end_element(name)
            case name
            when 'RequestId', 'Marker'
              @response[name] = value
            when 'IsTruncated'
              @response[name] = (value == 'true')
            end
            super
          end
        end
      end
    end
  end
end

Version data entries

76 entries across 76 versions & 11 rubygems

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