Hi,
I wonder that, is it possible to create a nested dynamic component for the yang like below?
list endpoint {
key endpoint-name;
list interface {
key interface-name;
}
}
ncs:multiplier {
ncs:foreach "endpoint/interface" {
ncs:variable "NAME" {
ncs:value-expr "interface-name";
}
ncs:create-component "$NAME" { ... }
}
}
Thanks