diff options
author | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2020-12-01 11:33:35 -0800 |
---|---|---|
committer | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2020-12-01 11:33:35 -0800 |
commit | 96a9aafdff7813324bc8a8ba1e743683e251dde6 (patch) | |
tree | 644c6837ab58ed21fb05f4bf988dc392875b9f8d /restconf-client/provider/src/test/resources/yang/test-augment.yang | |
parent | a0e97e71a49a8b54fddf8fb004b32f202f114011 (diff) |
Migrate files from sli-plugins
Migrate sli-plugins repo into new
directory "plugins".
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
Diffstat (limited to 'restconf-client/provider/src/test/resources/yang/test-augment.yang')
-rw-r--r-- | restconf-client/provider/src/test/resources/yang/test-augment.yang | 106 |
1 files changed, 0 insertions, 106 deletions
diff --git a/restconf-client/provider/src/test/resources/yang/test-augment.yang b/restconf-client/provider/src/test/resources/yang/test-augment.yang deleted file mode 100644 index 795000d39..000000000 --- a/restconf-client/provider/src/test/resources/yang/test-augment.yang +++ /dev/null @@ -1,106 +0,0 @@ -module test-augment { - yang-version 1; - namespace "urn:opendaylight:params:xml:ns:yang:augment"; - prefix "hello"; - - import test-yang { - prefix t; - } - - revision "2015-01-05" { - description "Initial revision of hello model"; - } - - augment "/t:cont1/t:cont2/t:cont4" { - container cont5 { - leaf leaf13 { - type empty; - } - } - list list7 { - leaf leaf14 { - type instance-identifier; - } - } - leaf leaf15 { - type string; - } - leaf-list ll6 { - type union { - type int32; - type enumeration { - enum "unbounded"; - } - } - } - uses "t:g1"; - } - - uses "t:g1"; - augment "/t:ch1/t:c1/t:cont8/t:cont6" { - choice ch2 { - case c3 { - leaf leaf21 { - type string; - } - } - case c4 { - leaf leaf22 { - type enumeration { - enum zero; - enum one; - enum seven { - value 7; - } - } - } - } - } - } - - augment "/t:ch1" { - case c5 { - container cont10 { - leaf leaf23 { - type string; - } - } - } - } - - augment "/t:ch1/t:c1" { - container cont7 { - leaf leaf24 { - type string; - } - } - } - - augment "/t:cont13/t:cont12" { - leaf leaf29 { - type string; - } - } - - augment "/t:create-sfc/t:input" { - leaf leaf36 { - type bits { - bit angle { - position 0; - } - bit degree { - position 1; - } - bit movement { - position 2; - } - } - } - } - - augment "/t:create-sfc/t:output" { - leaf leaf37 { - type boolean; - } - } -}
\ No newline at end of file |