1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/parsers/compute/describe_snapshots.rb
2010-09-08 14:40:57 -07:00

34 lines
811 B
Ruby

module Fog
module Parsers
module AWS
module Compute
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