aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenes Nemeth <denes.nemeth@nokia.com>2018-01-10 22:41:45 +0100
committerDenes Nemeth <denes.nemeth@nokia.com>2018-01-10 22:43:53 +0100
commitfa6421d23a0e849d3676e089a027b879fb5b1cb1 (patch)
tree947a26b81aabad0a6e14e79fd082bec49fbb7a24
parent63fc9183e0196d02dd04bd98f82a90f97ee9fc06 (diff)
fix API inconsistency in ext VLs
Change-Id: Ie99c7826e10fa11c44f2581af8fbcd6a2fb664be Issue-ID: VFC-655 Signed-off-by: Denes Nemeth <denes.nemeth@nokia.com>
-rw-r--r--lcm/swagger/vfc.vnfdriver.swagger.json23
1 files changed, 18 insertions, 5 deletions
diff --git a/lcm/swagger/vfc.vnfdriver.swagger.json b/lcm/swagger/vfc.vnfdriver.swagger.json
index 52f94c5e..fc35adbd 100644
--- a/lcm/swagger/vfc.vnfdriver.swagger.json
+++ b/lcm/swagger/vfc.vnfdriver.swagger.json
@@ -951,17 +951,30 @@
"extVirtualLinkInfo":{
"type": "object",
"properties": {
+ "resourceSubnetId": {
+ "type": "string",
+ "description": "The provider id of the subnet"
+ },
"vlInstanceId": {
- "type": "string"
+ "type": "string",
+ "description" : "The identifier of the virtual link"
},
- "networkId": {
- "type": "string"
+ "resourceId": {
+ "type": "string",
+ "description": "The provider id of the network"
},
"cpdId": {
- "type": "string"
+ "type": "string",
+ "description": "The identifier of the connection point descriptor"
},
"vim": {
- "$ref": "#/definitions/vimInfo"
+ "type": "object",
+ "properties": {
+ "vimid": {
+ "type": "string",
+ "description": "The identifier of the VIM"
+ }
+ }
}
}
},