Sha256: 9e001c8ef227ebb320dc87ad7245a2c6fef0a0c86794dceb3dae9a3745dda54d
Contents?: true
Size: 603 Bytes
Versions: 25
Compression:
Stored size: 603 Bytes
Contents
module Fog module Compute class XenServer class Real # # Puts the host into a state in which no new VMs can be started. # Currently active VMs on the host continue to execute. # # @see http://docs.vmd.citrix.com/XenServer/6.0.0/1.0/en_gb/api/?c=host # def disable_host( ref ) @connection.request({:parser => Fog::Parsers::XenServer::Base.new, :method => "host.disable"}, ref) end end class Mock def disable_host( ref ) Fog::Mock.not_implemented end end end end end
Version data entries
25 entries across 25 versions & 4 rubygems