blob: 1a2c0c1d26c955b11e21ec62f8c3199eaeb4251f [file] [log] [blame]
module Test {
yang-version 1;
namespace http://huawei.com;
prefix Ant;
leaf ifType {
type enumeration {
enum ethernet;
enum atm;
}
must "ifType != ethernet" {
description "ifType is not ethernet";
}
}
}