Hi,

We have a yang model like [1].
Is it possible to read the entire list 'xyz' using instance identifiers from it 
without reading the parent container 'abc'?

Thanks
Vyshakh

[1]
container abc {
                config "true";

                container sub {
                                leaf host {
                                                type uint32;
                                                 mandatory "true";
                                }
                                leaf port {
                                                type uint32;
                                                 mandatory "true";
                                }
                }

                list xyz {
                                key "address";
                                 leaf address {
      type inet:ipv4-address;
      mandatory "true";
                                }
leaf remote-as {
      type uint32;
      mandatory "true";
                                }
                }
                .
                .
                .
}


_______________________________________________
controller-dev mailing list
controller-dev@lists.opendaylight.org
https://lists.opendaylight.org/mailman/listinfo/controller-dev

Reply via email to