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/xenserver/requests/compute/clone_server.rb
2014-12-21 12:27:13 -02:00

30 lines
933 B
Ruby

module Fog
module Compute
class XenServer
class Real
def clone_server( server_name, template_ref )
# Clone the VM template
if template_ref.kind_of? Fog::Compute::XenServer::Server
Fog::Logger.deprecation(
'Passing an object to #clone_server is deprecated. Pass the reference instead.'
)
template_ref = template_ref.reference
end
raise ArgumentError.new("Invalid template_ref") if template_ref.nil?
raise ArgumentError.new("Invalid template_ref") if server_name.nil?
ref = @connection.request(
{:parser => Fog::Parsers::XenServer::Base.new, :method => 'VM.clone'},
template_ref, server_name
)
end
end
class Mock
def clone_server( server_name, template_ref )
Fog::Mock.not_implemented
end
end
end
end
end