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/detach_volume.rb

23 lines
435 B
Ruby
Raw Normal View History

module Fog
module Parsers
module AWS
2010-09-08 17:40:02 -04:00
module Compute
class DetachVolume < Fog::Parsers::Base
def end_element(name)
case name
when 'attachTime'
2009-08-01 04:15:44 -04:00
@response[name] = Time.parse(@value)
when 'device', 'instanceId', 'requestId', 'status', 'volumeId'
@response[name] = @value
end
end
end
end
end
end
end