From 003d3b1ecc9f6b309fee035f94e10aff6a0b8d4c Mon Sep 17 00:00:00 2001 From: Mahesh Jethanandani Date: Tue, 12 Mar 2019 12:00:36 -0700 Subject: [PATCH] Fix for bug#218 --- src/yang/etsi-nfv-vnf.yang | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/yang/etsi-nfv-vnf.yang b/src/yang/etsi-nfv-vnf.yang index 112fe39..eafca9e 100755 --- a/src/yang/etsi-nfv-vnf.yang +++ b/src/yang/etsi-nfv-vnf.yang @@ -2484,14 +2484,20 @@ submodule etsi-nfv-vnf { } list lifecycle-management-script { - key "event"; + key "id"; description "Includes a list of events and corresponding management scripts performed for the VNF."; reference "GS NFV IFA011: Section 7.1.2 VNFD information element"; - leaf event { + leaf id { + type string; + description + "A unique string that identfies the script in question."; + } + + leaf-list event { type internal-lifecycle-management-script-event; description "Describes VNF lifecycle event(s) or an external stimulus -- GitLab