diff options
author | 2018-02-09 14:31:22 +0000 | |
---|---|---|
committer | 2018-02-09 14:31:22 +0000 | |
commit | 55065280b7ee7a85b5eeb73e1d5ce5aefa1d7356 (patch) | |
tree | f7b3d5ee1cd6ca5bb083134b0aed3b59a6237718 | |
parent | 4c9b9402a323fb4de91d1d82ff9eff2928f49e6a (diff) | |
parent | fa6421d23a0e849d3676e089a027b879fb5b1cb1 (diff) |
Merge "fix API inconsistency in ext VLs"
-rw-r--r-- | lcm/swagger/vfc.vnfdriver.swagger.json | 23 |
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" + } + } } } }, |