Sha256: 744829ea8e90cbb53945596129644395a09cbb240945d7bc34ce4c85a3911a93

Contents?: true

Size: 858 Bytes

Versions: 29

Compression:

Stored size: 858 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module Elasticache
        require 'fog/aws/parsers/elasticache/base'

        class EventListParser < Base

          def reset
            super
            @response['Events'] = []
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'Event'; then @event = {}
            end

          end

          def end_element(name)
            case name
            when 'Date'
              @event[name] = DateTime.parse(value.strip)
            when 'Message', 'SourceIdentifier', 'SourceType'
              @event[name] = value ? value.strip : name
            when 'Event'
              @response['Events'] << @event unless @event.empty?
            else
              super
            end
          end
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 9 rubygems

Version Path
fog-parser-fix-1.6.1 lib/fog/aws/parsers/elasticache/event_list.rb
fog-test-again-1.6.0 lib/fog/aws/parsers/elasticache/event_list.rb
fog-parser-fix-1.6.0 lib/fog/aws/parsers/elasticache/event_list.rb
fog-1.6.0 lib/fog/aws/parsers/elasticache/event_list.rb
fog-1.5.0 lib/fog/aws/parsers/elasticache/event_list.rb
fog-1.4.0 lib/fog/aws/parsers/elasticache/event_list.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/event_list.rb
michiels-fog-1.3.1 lib/fog/aws/parsers/elasticache/event_list.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/aws/parsers/elasticache/event_list.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/event_list.rb
fog-1.3.1 lib/fog/aws/parsers/elasticache/event_list.rb
fog-1.3.0 lib/fog/aws/parsers/elasticache/event_list.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/event_list.rb
fog-1.2.0 lib/fog/aws/parsers/elasticache/event_list.rb
ktheory-fog-1.1.2 lib/fog/aws/parsers/elasticache/event_list.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/event_list.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/event_list.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/event_list.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/event_list.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/parsers/elasticache/event_list.rb