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/ec2/describe_snapshots.rb

31 lines
639 B
Ruby
Raw Normal View History

module Fog
module Parsers
module AWS
module EC2
class DescribeSnapshots < Fog::Parsers::Base
def reset
2009-08-01 04:15:44 -04:00
@response = { 'snapshotSet' => [] }
@snapshot = {}
end
def end_element(name)
case name
when 'item'
2009-08-01 04:15:44 -04:00
@response['snapshotSet'] << @snapshot
@snapshot = {}
2009-08-01 04:15:44 -04:00
when 'progress', 'snapshotId', 'status', 'volumeId'
@snapshot[name] = @value
when 'startTime'
2009-08-01 04:15:44 -04:00
@snapshot[name] = Time.parse(@value)
end
end
end
end
end
end
end