Sha256: a9cd09469c180688dd52150f6aded7f34d2c3e0b945b82fe23ad5d19891fe3e7

Contents?: true

Size: 1.45 KB

Versions: 36

Compression:

Stored size: 1.45 KB

Contents

module Fog
  module Parsers
    module AWS
      module Compute
        class DescribeSnapshots < Fog::Parsers::Base
          def reset
            @response = { 'snapshotSet' => [] }
            @snapshot = { 'tagSet' => {} }
            @tag = {}
          end

          def start_element(name, attrs = [])
            super
            if name == 'tagSet'
              @in_tag_set = true
            end
          end

          def end_element(name)
            if @in_tag_set
              case name
              when 'item'
                @snapshot['tagSet'][@tag['key']] = @tag['value']
                @tag = {}
              when 'key', 'value'
                @tag[name] = value
              when 'tagSet'
                @in_tag_set = false
              end
            else
              case name
              when 'item'
                @response['snapshotSet'] << @snapshot
                @snapshot = { 'tagSet' => {} }
              when 'description', 'ownerId', 'progress', 'snapshotId', 'status', 'volumeId'
                @snapshot[name] ||= value
              when 'requestId'
                @response[name] = value
              when 'startTime'
                @snapshot[name] = Time.parse(value)
              when 'volumeSize'
                @snapshot[name] = value.to_i
              when 'encrypted'
                @snapshot[name] = (value == 'true')
              end
            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/compute/describe_snapshots.rb
fog-aws-3.9.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.8.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.7.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.6.7 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.6.6 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.6.5 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.6.4 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.6.3 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.6.2 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.5.2 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.5.1 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.5.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.4.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.3.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-aws-3.2.0 lib/fog/aws/parsers/compute/describe_snapshots.rb