aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/pnf-onboarding/src/main/resources/csarContent/Files/Yang_module/mynetconf.yang
diff options
context:
space:
mode:
authorSzabolcs Hutvagner <szabolcs.hutvagner@ericsson.com>2019-04-05 18:42:15 +0100
committerSzabolcs Hutvagner <szabolcs.hutvagner@ericsson.com>2019-04-05 18:53:43 +0100
commit0c39410d5851c5c32046c10f6559d9a08833b165 (patch)
tree187ed50c26ac2cfb5fa8a021b873338da5431138 /test/mocks/pnf-onboarding/src/main/resources/csarContent/Files/Yang_module/mynetconf.yang
parent469b46f7230d9a2512c7c2103f51c7e85f69eb5a (diff)
Provide Sample Signed PNF Package for Integration Test
This can be used for integration test of Pre-Onboarding and Onboarding of a PNF package. Issue-ID: INT-949 Change-Id: I8f193dd6968f62d801530f99c5b130b0bdc57728 Signed-off-by: Szabolcs Hutvagner <szabolcs.hutvagner@ericsson.com>
Diffstat (limited to 'test/mocks/pnf-onboarding/src/main/resources/csarContent/Files/Yang_module/mynetconf.yang')
-rw-r--r--test/mocks/pnf-onboarding/src/main/resources/csarContent/Files/Yang_module/mynetconf.yang26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/mocks/pnf-onboarding/src/main/resources/csarContent/Files/Yang_module/mynetconf.yang b/test/mocks/pnf-onboarding/src/main/resources/csarContent/Files/Yang_module/mynetconf.yang
new file mode 100644
index 000000000..a0c094b40
--- /dev/null
+++ b/test/mocks/pnf-onboarding/src/main/resources/csarContent/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;
+ }
+ }
+
+ }
+}