mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
27 lines
686 B
Ruby
27 lines
686 B
Ruby
|
module Fog
|
||
|
module Parsers
|
||
|
module AWS
|
||
|
module SNS
|
||
|
class ListSubscriptions < Fog::Parsers::Base
|
||
|
def reset
|
||
|
@response = { 'Subscriptions' => [] }
|
||
|
@subscription = {}
|
||
|
end
|
||
|
|
||
|
def end_element(name)
|
||
|
case name
|
||
|
when "TopicArn", "Protocol", "SubscriptionArn", "Owner", "Endpoint"
|
||
|
@subscription[name] = @value.strip
|
||
|
when "member"
|
||
|
@response['Subscriptions'] << @subscription
|
||
|
@subscription = {}
|
||
|
when 'RequestId', 'NextToken'
|
||
|
@response[name] = @value.strip
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|