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