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/eject_vbd.rb

23 lines
381 B
Ruby
Raw Normal View History

2012-04-02 13:25:03 +02:00
module Fog
module Compute
class XenServer
class Real
2012-04-10 08:01:17 +02:00
def eject_vbd(ref, extra_args = {})
@connection.request({:parser => Fog::Parsers::XenServer::Base.new, :method => 'VBD.eject'}, ref)
2012-04-02 13:25:03 +02:00
end
end
class Mock
2012-04-10 08:01:17 +02:00
def eject_vbd(ref, extra_args = {})
2012-04-02 13:25:03 +02:00
Fog::Mock.not_implemented
end
end
end
end
end