-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[xenserver|compute] added create_network request
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
module Fog | ||
module Compute | ||
class XenServer | ||
|
||
class Real | ||
|
||
# Create a Network | ||
# | ||
# @see http://docs.vmd.citrix.com/XenServer/6.0.0/1.0/en_gb/api/?c=network | ||
# | ||
def create_network( name, config = {} ) | ||
config.reject! { |k,v| v.nil? } | ||
|
||
default_config = { | ||
:name_label => name, | ||
# Description is mandatory in XenAPI but we default to empty | ||
:name_description => config[:description] || '', | ||
# Mandatory, but can be empty | ||
:other_config => {} | ||
}.merge config | ||
|
||
@connection.request( | ||
{ | ||
:parser => Fog::Parsers::XenServer::Base.new, | ||
:method => 'network.create' | ||
}, | ||
default_config | ||
) | ||
end | ||
end | ||
|
||
class Mock | ||
|
||
def create_network( name, description = '', config = {} ) | ||
Fog::Mock.not_implemented | ||
end | ||
|
||
end | ||
|
||
end | ||
end | ||
end |