Sha256: 61fe1bbe2269fbd7563ab6fa62e401d687d6010c4b7d66ea587dc61bd612e126
Contents?: true
Size: 575 Bytes
Versions: 63
Compression:
Stored size: 575 Bytes
Contents
module Fog module Compute class XenServer class Real # # Puts the host into a state in which VMs can be started. # # @see http://docs.vmd.citrix.com/XenServer/6.0.0/1.0/en_gb/api/?c=host # def enable_host( ref ) @connection.request({:parser => Fog::Parsers::XenServer::Base.new, :method => "host.enable"}, ref) end end class Mock def enable_host( ref ) Fog::Mock.not_implemented end end end end end
Version data entries
63 entries across 63 versions & 6 rubygems