Fix bug 1732: backwards compatibility of relations 20/11320/3 v11.0.0 v11.0.0rc1 v11.0.0rc2
authorDavid Garcia <david.garcia@canonical.com>
Tue, 9 Nov 2021 10:18:36 +0000 (11:18 +0100)
committergarciadav <david.garcia@canonical.com>
Thu, 11 Nov 2021 17:28:01 +0000 (19:28 +0200)
Change-Id: Iaf7059f7d6555a34216f1b31acd896806df83c61
Signed-off-by: David Garcia <david.garcia@canonical.com>
models/augments/common-augments.yang

index c365424..0467bc2 100644 (file)
@@ -200,6 +200,31 @@ module common-augments {
                   "Execution environment that uses the service provided by the provider";
                 uses relations-ee;
             }
+            list entities {
+                description
+                  "DEPRECATION NOTICE: use provider and requirer instead.
+                   List of two elements to be related.
+                   Elements to be related are identified by a pair (id, endpoint).
+                   The relation will relate (id1, endpoint1) to (id2, endpoint2).";
+                key "id";
+
+                leaf id {
+                    description
+                      "A string, reference to the element id in the descriptor.
+                       It could be a vnfd-id or a vdu-id in a VNFD,
+                       or a nsd-id or member-vnf-index in a NSD.";
+                    type string;
+                }
+
+                leaf endpoint {
+                    description
+                      "Endpoint name defining the relation.";
+                    type string;
+                }
+            }
+            must 'not(entities) or (not(provider) and not(requirer))' {
+                error-message 'Cannot set both "entities" and "provider/requirer" fields.';
+            }
         }
     }