summaryrefslogtreecommitdiffstats
path: root/lcm/lcm/pub/msapi/gvnfmdriver.py
diff options
context:
space:
mode:
authorYuanHong Deng <dengyuanhong@chinamobile.com>2020-05-12 15:52:07 +0800
committerYuanhong Deng <dengyuanhong@chinamobile.com>2020-05-13 02:36:48 +0000
commit649ddb83743de05ca5df0626de700ac24635fae7 (patch)
treec533de50f5fc8c9cc5cb45dd72fc767ee0955f1a /lcm/lcm/pub/msapi/gvnfmdriver.py
parentd64bcd2879226a2929ee5b0e3b0c8fa5fc7c5972 (diff)
Implement of reporting port instance data from GVNFM to NFVO
Change-Id: I62324871456481bea1c743ca4a78700bd1d0dc9a Issue-ID: VFC-1657 Signed-off-by: YuanHong Deng <dengyuanhong@chinamobile.com>
Diffstat (limited to 'lcm/lcm/pub/msapi/gvnfmdriver.py')
-rw-r--r--lcm/lcm/pub/msapi/gvnfmdriver.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/lcm/lcm/pub/msapi/gvnfmdriver.py b/lcm/lcm/pub/msapi/gvnfmdriver.py
index 850736ce..8d097574 100644
--- a/lcm/lcm/pub/msapi/gvnfmdriver.py
+++ b/lcm/lcm/pub/msapi/gvnfmdriver.py
@@ -99,7 +99,14 @@ def prepare_notification_data(nfinstid, jobid, changetype, operation):
'vimConnectionId': port.vimid,
'resourceId': port.resourceid,
'resourceProviderId': port.name, # TODO: is resourceName mapped to resourceProviderId?
- 'vimLevelResourceType': 'port'
+ 'vimLevelResourceType': 'port',
+ 'tenant': port.tenant,
+ 'ipAddress': port.ipaddress,
+ 'macAddress': port.macaddress,
+ 'instId': port.instid,
+ 'portid': port.portid,
+ 'networkid': port.networkid,
+ 'subnetworkid': port.subnetworkid
},
'cpInstanceId': port.portid # TODO: port.cpinstanceid is not initiated when create port resource.
})
@@ -115,6 +122,7 @@ def prepare_notification_data(nfinstid, jobid, changetype, operation):
ext_connectivity.append({
'id': network_id,
'resourceHandle': network_resource,
+ 'changeType': changetype,
'extLinkPorts': ext_link_ports
})
logger.debug("ext_connectivity=%s", ext_connectivity)
@@ -146,7 +154,7 @@ def prepare_notification_data(nfinstid, jobid, changetype, operation):
'affectedVnfcs': affected_vnfcs,
'affectedVirtualLinks': affected_vls,
'affectedVirtualStorages': affected_vss,
- 'changedExtConnectivity': [], # TODO: will add in R4
+ 'changedExtConnectivity': ext_connectivity,
'_links': {
'vnfInstance': {'href': '/api/vnflcm/v1/vnf_instances/%s' % nfinstid},
# set 'subscription' link after filtering for subscribers