I’m “using” a container from another module, and without modifying the original module, I would like to make certain leafs within it mandatory in the current module.
Is this possible?
ex:
module A {
grouping A-group {
container A-container {
leaf A-leaf {
type uint8;
}
leaf B-leaf {
type uint8;
}
}
}
}
module B {
import A;
container B {
uses A-group;
// make A-leaf mandatory, but not B-leaf?
}
}