diff options
author | rope252 <gareth.roper@est.tech> | 2020-01-23 12:07:47 +0000 |
---|---|---|
committer | rope252 <gareth.roper@est.tech> | 2020-01-23 12:07:52 +0000 |
commit | df4d6afbc16a86aa2bfd8cf9e576cd59be45e3d9 (patch) | |
tree | 77e8d7b7499e8839806b37c1b03c965fe7c91e5a /adapters | |
parent | 66781db64d1839f283ce99278393f2c65baf9263 (diff) |
Update to Latest ETSI Catalog Swagger
Change-Id: I51687625cbc7ac52d882fb58fc76a1875528d693
Issue-ID: SO-2578
Signed-off-by: rope252 <gareth.roper@est.tech>
Diffstat (limited to 'adapters')
-rw-r--r-- | adapters/mso-vnfm-adapter/mso-vnfm-adapter-ext-clients/src/main/resources/ETSI-Catalog-API.json | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/adapters/mso-vnfm-adapter/mso-vnfm-adapter-ext-clients/src/main/resources/ETSI-Catalog-API.json b/adapters/mso-vnfm-adapter/mso-vnfm-adapter-ext-clients/src/main/resources/ETSI-Catalog-API.json index efd427009d..9827310627 100644 --- a/adapters/mso-vnfm-adapter/mso-vnfm-adapter-ext-clients/src/main/resources/ETSI-Catalog-API.json +++ b/adapters/mso-vnfm-adapter/mso-vnfm-adapter-ext-clients/src/main/resources/ETSI-Catalog-API.json @@ -2682,8 +2682,6 @@ } }, "Version": { - "title": "Versions", - "description": "match VNF packages that contain VNF products with certain versions", "required": ["vnfSoftwareVersion"], "type": "object", "properties": { @@ -2705,8 +2703,6 @@ } }, "vnfProducts": { - "title": "Vnfproducts", - "description": "match VNF packages that contain VNF products with certain product names, from one particular provider", "required": ["vnfProductName"], "type": "object", "properties": { @@ -2718,7 +2714,11 @@ "minLength": 1 }, "versions": { - "$ref": "#/definitions/Version" + "description": "match VNF packages that contain VNF products with certain versions", + "type": "array", + "items": { + "$ref": "#/definitions/Version" + } } } }, @@ -2734,7 +2734,11 @@ "minLength": 1 }, "vnfProducts": { - "$ref": "#/definitions/vnfProducts" + "description": "match VNF packages that contain VNF products with certain product names, from one particular provider", + "type": "array", + "items": { + "$ref": "#/definitions/vnfProducts" + } } } }, |