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/copy_snapshot.rb
2012-12-18 16:01:37 -08:00

22 lines
375 B
Ruby

module Fog
module Parsers
module Compute
module AWS
class CopySnapshot < Fog::Parsers::Base
def end_element(name)
case name
when 'snapshotId'
@response[name] = value
when 'requestId'
@response[name] = value
end
end
end
end
end
end
end