Sha256: e24bd545227f4402d3ac027b6df142974b82bb7cb0706770df8991c91dd20f7e

Contents?: true

Size: 807 Bytes

Versions: 51

Compression:

Stored size: 807 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module EC2

        class DescribeSnapshots < Fog::Parsers::Base

          def reset
            @response = { 'snapshotSet' => [] }
            @snapshot = {}
          end

          def end_element(name)
            case name
            when 'item'
              @response['snapshotSet'] << @snapshot
              @snapshot = {}
            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

Version data entries

51 entries across 51 versions & 2 rubygems

Version Path
fog-0.2.30 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.28 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.27 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.26 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.25 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.24 lib/fog/aws/parsers/ec2/describe_snapshots.rb
tecnh-fog-0.2.23.vpc lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.23 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.22 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.21 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.20 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.19 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.18 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.17 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.16 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.15 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.14 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.13 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.12 lib/fog/aws/parsers/ec2/describe_snapshots.rb
fog-0.2.11 lib/fog/aws/parsers/ec2/describe_snapshots.rb