Sha256: 95cb178b14f394d09d86d987392db485a4b5d64ae09a1b11f97f428211429466

Contents?: true

Size: 1.37 KB

Versions: 22

Compression:

Stored size: 1.37 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[key] = 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
              end
            end
          end

        end

      end
    end
  end
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
fog-0.3.28 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.27 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.26 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.25 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.24 lib/fog/aws/parsers/compute/describe_snapshots.rb
bbcloud-0.8.1 lib/bbcloud/vendor/fog-0.3.23/lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.23 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.22 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.21 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.20 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.19 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.18 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.17 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.16 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.15 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.14 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.13 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.12 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.11 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.10 lib/fog/aws/parsers/compute/describe_snapshots.rb