summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenes Nemeth <denes.nemeth@nokia.com>2017-12-04 10:53:05 +0100
committerDenes Nemeth <denes.nemeth@nokia.com>2017-12-04 10:56:25 +0100
commit6188944765de555662bdc99c01bbcb17252259e6 (patch)
tree15a411453db0c5a8de12c45279dab6de4caed346
parentf1c3a65a24b92d29ca43065117ba71c07255366e (diff)
Fix catalog API inconsistency with code
Change-Id: Id892237130225c346c924de6c4b30179532b1a0b Issue-ID: VFC-611 Signed-off-by: Denes Nemeth <denes.nemeth@nokia.com>
-rw-r--r--lcm/swagger/vfc.vnfdriver.swagger.json16
1 files changed, 12 insertions, 4 deletions
diff --git a/lcm/swagger/vfc.vnfdriver.swagger.json b/lcm/swagger/vfc.vnfdriver.swagger.json
index 54d8f640..a2b37f3d 100644
--- a/lcm/swagger/vfc.vnfdriver.swagger.json
+++ b/lcm/swagger/vfc.vnfdriver.swagger.json
@@ -1155,9 +1155,13 @@
"type": "object",
"description": "vnf package infomation",
"properties": {
- "csarId": {
+ "vnfPackageId": {
"type": "string",
- "description": "vnf package id, UUID"
+ "description": "vnf package id (csarId)"
+ },
+ "csarName": {
+ "type": "string",
+ "description": "The name of the csar"
},
"vnfdId": {
"type": "string",
@@ -1167,6 +1171,10 @@
"type": "string",
"description": "VNF descriptor vendor ID"
},
+ "vnfdModel": {
+ "type": "string",
+ "description": "The model of the VNF (JSON) encoded to string"
+ },
"vnfdVersion": {
"type": "string",
"description": "VNF descriptor version"
@@ -1175,9 +1183,9 @@
"type": "string",
"description": "VNF Software version"
},
- "downloadUri":{
+ "downloadUrl":{
"type": "string",
- "description": "The download uri of VNF package"
+ "description": "The URL from which the VNF package can be downloaded"
}
}
},