Sha256: 713420a2e23349a0d1618604c388094a9004329dc780eac2ff085b6dc0105e06

Contents?: true

Size: 588 Bytes

Versions: 51

Compression:

Stored size: 588 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module EC2

        class CreateSnapshot < Fog::Parsers::Base

          def end_element(name)
            case name
            when 'description', 'ownerId', 'progress', 'snapshotId', 'status', 'volumeId'
              @response[name] = @value
            when 'requestId'
              @response[name] = @value
            when 'startTime'
              @response[name] = Time.parse(@value)
            when 'volumeSize'
              @response[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/create_snapshot.rb
fog-0.2.28 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.27 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.26 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.25 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.24 lib/fog/aws/parsers/ec2/create_snapshot.rb
tecnh-fog-0.2.23.vpc lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.23 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.22 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.21 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.20 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.19 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.18 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.17 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.16 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.15 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.14 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.13 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.12 lib/fog/aws/parsers/ec2/create_snapshot.rb
fog-0.2.11 lib/fog/aws/parsers/ec2/create_snapshot.rb