mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
691 B
Ruby
29 lines
691 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.rstrip
|
|
when "member"
|
|
@response['Subscriptions'] << @subscription
|
|
@subscription = {}
|
|
when 'RequestId', 'NextToken'
|
|
@response[name] = @value.rstrip
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|