我知道 Yang 模型中的“when”语句将 XPATH 表达式作为其参数。
什么是正确的 YANG XPATH 语法来组合多个表达式以便如下建模类型/值数据容器?
container c1 {
leaf attrib-type {
type uint32;
}
leaf attrib-val-int {
when "../attrib-type = 1 or ../attrib-type = 2"
type uint32;
}
leaf attrib-val-string {
when "../attrib-type = 5 or ../attrib-type = 6"
type string;
}
}