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-0.0.6 lib/fog/aws/parsers/iam/list_roles.rb
fog-aws-0.0.5 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.26.0 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.25.0 lib/fog/aws/parsers/iam/list_roles.rb
nsidc-fog-1.24.1 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.24.0 lib/fog/aws/parsers/iam/list_roles.rb
ns-fog-1.22.11 lib/fog/aws/parsers/iam/list_roles.rb
ns-fog-1.22.10 lib/fog/aws/parsers/iam/list_roles.rb
ns-fog-1.22.9 lib/fog/aws/parsers/iam/list_roles.rb
ns-fog-1.22.8 lib/fog/aws/parsers/iam/list_roles.rb
ns-fog-1.22.7 lib/fog/aws/parsers/iam/list_roles.rb
ns-fog-1.22.6 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.23.0 lib/fog/aws/parsers/iam/list_roles.rb
ns-fog-1.22.4 lib/fog/aws/parsers/iam/list_roles.rb
ns-fog-1.22.3 lib/fog/aws/parsers/iam/list_roles.rb
ns-fog-1.22.2 lib/fog/aws/parsers/iam/list_roles.rb
fog-1.22.1 lib/fog/aws/parsers/iam/list_roles.rb