Class: Fog::Parsers::AWS::SNS::ListSubscriptions
- Inherits:
-
Base
- Object
- Base
- Fog::Parsers::AWS::SNS::ListSubscriptions
- Defined in:
- lib/fog/aws/parsers/sns/list_subscriptions.rb
Instance Method Summary collapse
Instance Method Details
#end_element(name) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/fog/aws/parsers/sns/list_subscriptions.rb', line 11 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 |
#reset ⇒ Object
6 7 8 9 |
# File 'lib/fog/aws/parsers/sns/list_subscriptions.rb', line 6 def reset @response = { 'Subscriptions' => [] } @subscription = {} end |