如何在restconf中从父级获取特定的子元素,但同时在restconf中获取所有父级的子元素? 例如:我的模块
module system{
leaf name{
type string;
}
leaf version{
type string;
}
container processors{
list processor{
key "id";
leaf id{
type string;
}
leaf name{
type string;
}
}
}
}
我想要系统的所有孩子(名称、版本、处理器),但只有处理器的 id:
<system>
<name>system_1</name>
<version>1</version>
<processors>
<processor>
<id>1</id>
</processor>
<processor>
<id>2</id>
</processor>
</processors>
</system>
将在restconf中调用该答案的查询是什么?