Sha256: 059e1e30e710a4ffc7087fc07714fb526d97d1ee48b89a04a0c5f7359477deb9
Contents?: true
Size: 529 Bytes
Versions: 25
Compression:
Stored size: 529 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
25 entries across 25 versions & 4 rubygems