Skip to content

Commit

Permalink
[xenserver|compute] added create_network request
Browse files Browse the repository at this point in the history
  • Loading branch information
rubiojr committed Mar 26, 2013
1 parent 6f719dd commit f78e99a
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions lib/fog/xenserver/requests/compute/create_network.rb
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

0 comments on commit f78e99a

Please sign in to comment.