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-3.30.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.29.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.28.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.27.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.26.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.25.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.24.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.23.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.22.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.21.1 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.21.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.20.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.19.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.18.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.17.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.16.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.15.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.14.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.13.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb
fog-aws-3.12.0 lib/fog/aws/parsers/sns/get_topic_attributes.rb