Sha256: ee4f5ec9dbca218d31179f4081a5158f7d1590ce9cede628b77c1b830695d3c4

Contents?: true

Size: 738 Bytes

Versions: 36

Compression:

Stored size: 738 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module Storage
        class GetBucketTagging < Fog::Parsers::Base
          def reset
            @in_tag = {}
            @response = {'BucketTagging' => {}}
          end

          def start_element(name, *args)
            super
            if name == 'Tag'
              @in_tag = {}
            end
          end

          def end_element(name)
            case name
            when 'Tag'
              @response['BucketTagging'].merge!(@in_tag)
              @in_tag = {}
            when 'Key'
              @in_tag[value] = nil
            when 'Value'
              @in_tag = {@in_tag.keys.first => value}
            end
          end
        end
      end
    end
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
fog-aws-3.10.0 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.9.0 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.8.0 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.7.0 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.6.7 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.6.6 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.6.5 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.6.4 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.6.3 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.6.2 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.5.2 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.5.1 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.5.0 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.4.0 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.3.0 lib/fog/aws/parsers/storage/get_bucket_tagging.rb
fog-aws-3.2.0 lib/fog/aws/parsers/storage/get_bucket_tagging.rb