diff options
author | Lasse Kaihlavirta <l.kaihlavirt@partner.samsung.com> | 2020-12-16 09:15:09 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-12-16 09:15:09 +0000 |
commit | ab27141d3585af25de56f00cb763f08d734299e0 (patch) | |
tree | 01bfef6f105fa23d651a5c3cdedfc14435964771 /pnf-sim-lightweight/netconf | |
parent | 4c7c4eb6b8f43e3dd27a0581de62cb93148f649e (diff) | |
parent | b761beb3ea2bafd786473775b5ba0afcb3fa2fd3 (diff) |
Merge "Move Masspnf simulator code from Integration repository to it's own"
Diffstat (limited to 'pnf-sim-lightweight/netconf')
-rw-r--r-- | pnf-sim-lightweight/netconf/pnf-simulator.data.xml | 4 | ||||
-rw-r--r-- | pnf-sim-lightweight/netconf/pnf-simulator.yang | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/pnf-sim-lightweight/netconf/pnf-simulator.data.xml b/pnf-sim-lightweight/netconf/pnf-simulator.data.xml new file mode 100644 index 0000000..9d648bb --- /dev/null +++ b/pnf-sim-lightweight/netconf/pnf-simulator.data.xml @@ -0,0 +1,4 @@ +<config xmlns="http://nokia.com/pnf-simulator"> + <itemValue1>42</itemValue1> + <itemValue2>35</itemValue2> +</config> diff --git a/pnf-sim-lightweight/netconf/pnf-simulator.yang b/pnf-sim-lightweight/netconf/pnf-simulator.yang new file mode 100644 index 0000000..d7fc2f2 --- /dev/null +++ b/pnf-sim-lightweight/netconf/pnf-simulator.yang @@ -0,0 +1,9 @@ +module pnf-simulator { + namespace "http://nokia.com/pnf-simulator"; + prefix config; + container config { + config true; + leaf itemValue1 {type uint32;} + leaf itemValue2 {type uint32;} + } +} |