blob: 1a2c0c1d26c955b11e21ec62f8c3199eaeb4251f [file] [log] [blame]
Vidyashree Rama13b4c552016-06-20 15:12:43 +05301module Test {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
5 leaf ifType {
6 type enumeration {
7 enum ethernet;
8 enum atm;
9 }
surya-huaweib2c64c52017-06-22 10:25:35 +053010 must "ifType != ethernet" {
Vidyashree Rama13b4c552016-06-20 15:12:43 +053011 description "ifType is not ethernet";
12 }
13 }
14}