diff options
author | krzysztof kuzmicki <krzysztof.kuzmicki@nokia.com> | 2019-07-31 13:46:06 +0200 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2019-08-02 13:20:18 +0000 |
commit | 84049342b457d5df1d27b6409f74653e03131109 (patch) | |
tree | 7f20006f5c6b25e81e37c4eee5ff23cebb11fc43 /tosca/pNF/Files/Yang_module | |
parent | 63792a4c5eaf5c199b21036ae3614350bc088c97 (diff) |
ROBOT test cases improvements for PnP PNF in El Alto release
Issue-ID: INT-1179
Signed-off-by: Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com>
Change-Id: Ic875cbaf02c645487f0696adf0af80130db83784
Diffstat (limited to 'tosca/pNF/Files/Yang_module')
-rw-r--r-- | tosca/pNF/Files/Yang_module/mynetconf.yang | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tosca/pNF/Files/Yang_module/mynetconf.yang b/tosca/pNF/Files/Yang_module/mynetconf.yang new file mode 100644 index 00000000..a0c094b4 --- /dev/null +++ b/tosca/pNF/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; + } + } + + } +} |