Sha256: 4e4abe4c21708c5ab6fc5077f052b43cb35e76066771b1067a9830fbb37bf907
Contents?: true
Size: 649 Bytes
Versions: 63
Compression:
Stored size: 649 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
63 entries across 63 versions & 6 rubygems