VCD feature 7193-provider_nerwork
Change-Id: I72c64fe451831e20eb60e2629f998aba0130bfdf
Signed-off-by: kbsub <subair.basheer@riftio.com>
diff --git a/osm_ro/vimconn_fos.py b/osm_ro/vimconn_fos.py
index ca550f2..d101d46 100644
--- a/osm_ro/vimconn_fos.py
+++ b/osm_ro/vimconn_fos.py
@@ -110,7 +110,7 @@
except Exception as e:
raise vimconn.vimconnConnectionException("VIM not reachable. Error {}".format(e))
- def new_network(self, net_name, net_type, ip_profile=None, shared=False, vlan=None):
+ def new_network(self, net_name, net_type, ip_profile=None, shared=False, provider_network_profile=None):
"""Adds a tenant network to VIM
Params:
'net_name': name of the network
@@ -127,7 +127,6 @@
'dhcp_start_address': ip_schema, first IP to grant
'dhcp_count': number of IPs to grant.
'shared': if this network can be seen/use by other tenants/organization
- 'vlan': in case of a data or ptp net_type, the intended vlan tag to be used for the network
Returns the network identifier on success or raises and exception on failure
"""
self.logger.debug('new_network: {}'.format(locals()))