Sha256: 04cdface48cdf682da0afcb2cd1a5bf938d8f3a2ef0059a66d7cb609bbb8db89

Contents?: true

Size: 779 Bytes

Versions: 82

Compression:

Stored size: 779 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module SNS
        class GetTopicAttributes < Fog::Parsers::Base
          def reset
            @response = { 'Attributes' => {} }
          end

          def end_element(name)
            case name
            when 'key'
              @key = @value.rstrip
            when 'value'
              case @key
              when 'SubscriptionsConfirmed', 'SubscriptionsDeleted', 'SubscriptionsPending'
                @response['Attributes'][@key] = @value.rstrip.to_i
              else
                @response['Attributes'][@key] = (@value && @value.rstrip) || nil
              end
            when 'RequestId'
              @response[name] = @value.rstrip
            end
          end
        end
      end
    end
  end
end

Version data entries

82 entries across 80 versions & 3 rubygems

Version Path
fog-aws-0.8.1 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.8.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-aws-0.7.5/lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.7.6 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.7.5 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.7.4 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.7.3 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.7.2 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.6.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.5.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.4.1 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.4.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.3.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.2.2 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.2.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.1.2 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.1.1 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.1.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.0.8 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-0.0.7 lib/fog/aws/parsers/sns/get_topic_attributes.rb