1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/parsers/rds/event_subscription_parser.rb
Josh Lane d48d376e9c initial import
* take the liberty of correcting Aws naming
2014-12-31 09:17:51 -08:00

37 lines
1 KiB
Ruby

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