Sha256: c4da22575bb6e87df9c080159fda662a7afdc529ea0d3bd2fe3d5d7798796f33

Contents?: true

Size: 654 Bytes

Versions: 97

Compression:

Stored size: 654 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

97 entries across 95 versions & 6 rubygems

Version Path
fog-aws-3.29.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.28.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.27.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.26.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.25.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.24.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.23.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.22.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.21.1 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.21.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.20.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.19.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.18.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.17.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.16.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.15.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.14.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.13.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.12.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-3.11.0 lib/fog/aws/parsers/iam/list_roles.rb