aboutsummaryrefslogtreecommitdiffstats
path: root/tosca/vnfsdk/test_SDC_and_VNFSDK_API_missing_entry_in_manifest/Files/Yang_module/mynetconf.yang
diff options
context:
space:
mode:
authorKrzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com>2020-05-05 14:32:41 +0200
committerMarcin Przybysz <marcin.przybysz@nokia.com>2020-05-07 11:48:02 +0000
commit2b1ae21b3854782f1a4e27f00b406fa7d8931bcf (patch)
tree4d5939c4b8105a60ccd9cb06e7c8658c07483682 /tosca/vnfsdk/test_SDC_and_VNFSDK_API_missing_entry_in_manifest/Files/Yang_module/mynetconf.yang
parent2b0a6121cb3398a1dd1baa5fd221374e90db5ce7 (diff)
ROBOT e2e test cases improvements for csar/zip tosca package validation in VNFSDK and SDC Onbarding
Issue-ID: INT-1240 Signed-off-by: Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com> Change-Id: If4d89b802a85241e66f38e010e8be0ce94a484e3
Diffstat (limited to 'tosca/vnfsdk/test_SDC_and_VNFSDK_API_missing_entry_in_manifest/Files/Yang_module/mynetconf.yang')
-rw-r--r--tosca/vnfsdk/test_SDC_and_VNFSDK_API_missing_entry_in_manifest/Files/Yang_module/mynetconf.yang26
1 files changed, 26 insertions, 0 deletions
diff --git a/tosca/vnfsdk/test_SDC_and_VNFSDK_API_missing_entry_in_manifest/Files/Yang_module/mynetconf.yang b/tosca/vnfsdk/test_SDC_and_VNFSDK_API_missing_entry_in_manifest/Files/Yang_module/mynetconf.yang
new file mode 100644
index 00000000..a0c094b4
--- /dev/null
+++ b/tosca/vnfsdk/test_SDC_and_VNFSDK_API_missing_entry_in_manifest/Files/Yang_module/mynetconf.yang
@@ -0,0 +1,26 @@
+module mynetconf {
+ yang-version 1.1;
+ namespace "urn:mynetconf:test";
+
+ prefix nft;
+
+ organization "mynetconf";
+ contact "my netconf address";
+ description "yang model for mynetconf";
+ revision "2019-03-01"{
+ description "initial version";
+ }
+
+ container netconflist{
+ list netconf{
+ key netconf-id;
+ leaf netconf-id{
+ type uint16;
+ }
+ leaf netconf-param {
+ type uint32;
+ }
+ }
+
+ }
+}