mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[xenserver|compute] added destroy_network request
This commit is contained in:
parent
34b55dce78
commit
3db14a2391
1 changed files with 33 additions and 0 deletions
33
lib/fog/xenserver/requests/compute/destroy_network.rb
Normal file
33
lib/fog/xenserver/requests/compute/destroy_network.rb
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
module Fog
|
||||||
|
module Compute
|
||||||
|
class XenServer
|
||||||
|
|
||||||
|
class Real
|
||||||
|
|
||||||
|
#
|
||||||
|
# Destroy a Network
|
||||||
|
#
|
||||||
|
# @see http://docs.vmd.citrix.com/XenServer/6.0.0/1.0/en_gb/api/?c=network
|
||||||
|
#
|
||||||
|
def destroy_network( ref )
|
||||||
|
@connection.request(
|
||||||
|
{
|
||||||
|
:parser => Fog::Parsers::XenServer::Base.new,
|
||||||
|
:method => 'network.destroy'
|
||||||
|
},
|
||||||
|
ref
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
class Mock
|
||||||
|
|
||||||
|
def destroy_network( ref )
|
||||||
|
Fog::Mock.not_implemented
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Add table
Reference in a new issue