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-maestrodev-1.18.0.20131205181604 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/aws/parsers/iam/list_roles.rb
gapinc-fog-1.12.1.2.1 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.18.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.17.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.16.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.15.0.20130927082724 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/aws/parsers/iam/list_roles.rb