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-1.15.0 lib/fog/aws/parsers/iam/list_roles.rb
gapinc-fog-1.14.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.14.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.13.0 lib/fog/aws/parsers/iam/list_roles.rb
gapinc-fog-1.12.1.2 lib/fog/aws/parsers/iam/list_roles.rb
gapinc-fog-1.12.1.1 lib/fog/aws/parsers/iam/list_roles.rb
gapinc-fog-1.12.1a lib/fog/aws/parsers/iam/list_roles.rb
gapinc-fog-1.12.1 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.12.1 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.12.0 lib/fog/aws/parsers/iam/list_roles.rb
hpfog-0.0.20 lib/fog/aws/parsers/iam/list_roles.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/lib/fog/aws/parsers/iam/list_roles.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/lib/fog/aws/parsers/iam/list_roles.rb
fog-nirvanix-1.8.2 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.11.1 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.11.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-nirvanix-1.8.1 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.10.1 lib/fog/aws/parsers/iam/list_roles.rb
fog-parser-fix-1.6.1 lib/fog/aws/parsers/iam/list_roles.rb