Sha256: 94da0f2a859c1aea1cd90a5b2b4a1e9aa0d1d5a77be42fe46431c9b6ac22bc50

Contents?: true

Size: 1.01 KB

Versions: 82

Compression:

Stored size: 1.01 KB

Contents

module Fog
  module Parsers
    module AWS
      module RDS
        class EventSubscriptionParser < Fog::Parsers::Base
          def reset
            @event_subscription = fresh_event_subscription
          end

          def fresh_event_subscription
            {'EventCategories'=> []}
          end

          def start_element(name, attrs = [])
            super
            case name
            when 'EventCategoriesList'
              @in_event_categories_list = true
            end
          end

          def end_element(name)
            case name
            when 'EventCategory'
              @event_subscription['EventCategories'] << value
              @in_event_categories_list = false
            when 'SubscriptionCreationTime'
              @event_subscription[name] = Time.parse(value)
            when 'Enabled', 'CustomerAwsId', 'SourceType', 'Status', 'CustSubscriptionId', 'SnsTopicArn'
              @event_subscription[name] = value
            end
          end
        end
      end
    end
  end
end

Version data entries

82 entries across 80 versions & 3 rubygems

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