mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
482 B
Ruby
20 lines
482 B
Ruby
module Fog
|
|
module Compute
|
|
class XenServer
|
|
class Real
|
|
def destroy_vif( ref, extra_args = {})
|
|
Fog::Logger.deprecation(
|
|
'This method is deprecated. Use #destroy_record instead.'
|
|
)
|
|
@connection.request({:parser => Fog::Parsers::XenServer::Base.new, :method => 'VIF.destroy'}, ref)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def destroy_vif()
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|