Sha256: 7b955f3cc77b67c4184c10799eddc9fe0b09074f6843bc507a92acdb00fd3def

Contents?: true

Size: 1.37 KB

Versions: 20

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[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
              end
            end
          end

        end

      end
    end
  end
end

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
fog-0.7.2 lib/fog/compute/parsers/aws/describe_snapshots.rb
fog-0.7.1 lib/fog/compute/parsers/aws/describe_snapshots.rb
fog-0.7.0 lib/fog/compute/parsers/aws/describe_snapshots.rb
fog-0.6.0 lib/fog/compute/parsers/aws/describe_snapshots.rb
fog-0.5.3 lib/fog/compute/parsers/aws/describe_snapshots.rb
fog-0.5.2 lib/fog/compute/parsers/aws/describe_snapshots.rb
fog-0.5.1 lib/fog/compute/parsers/aws/describe_snapshots.rb
fog-0.5.0 lib/fog/compute/parsers/aws/describe_snapshots.rb
phpfog-fog-0.4.1.3 lib/fog/compute/parsers/aws/describe_snapshots.rb
phpfog-fog-0.4.1.2 lib/fog/compute/parsers/aws/describe_snapshots.rb
phpfog-fog-0.4.1.1 lib/fog/compute/parsers/aws/describe_snapshots.rb
phpfog-fog-0.4.1 lib/fog/compute/parsers/aws/describe_snapshots.rb
fog-0.4.1 lib/fog/compute/parsers/aws/describe_snapshots.rb
fog-0.4.0 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.34 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.33 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.32 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.31 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.30 lib/fog/aws/parsers/compute/describe_snapshots.rb
fog-0.3.29 lib/fog/aws/parsers/compute/describe_snapshots.rb