mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
392 B
Ruby
22 lines
392 B
Ruby
module Fog
|
|
module Compute
|
|
class XenServer
|
|
|
|
class Real
|
|
|
|
def snapshot_revert( snapshot_ref, extra_args = {})
|
|
@connection.request({:parser => Fog::Parsers::XenServer::Base.new, :method => 'VM.revert'}, snapshot_ref)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def snapshot_revert()
|
|
Fog::Mock.not_implemented
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|