Hello @saalvare , thanks for the help.
I think the node Interfaces is just what I'm looking for.
Do you know how can I obtain just the Interfaces class from the Node? I've setup a lot of filters, without success:
pppoes = pppoe_ma_oper.Pppoe()
nodes = pppoes.Nodes()
node = nodes.Node()
interfaces = node.Interfaces()
gocrud = crud.read(provider, interfaces)
print(gocrud)
But it returns errors:
Traceback (most recent call last):
File "rafael.py", line 130, in <module>
vai = crud.read(provider, interfaces)
File "/usr/local/lib/python2.7/dist-packages/ydk/services/crud_service.py", line 63, in read
top_filters = _get_top_level_entity(filters, provider.get_session().get_root_schema())
File "/usr/local/lib/python2.7/dist-packages/ydk/entity_utils/entity_utils.py", line 216, in _get_top_level_entity
data_node = get_data_node_from_entity(top_entity, root_schema)
RuntimeError: YInvalidArgumentError: ancestor for entity cannot be nullptr as one of the ancestors is a list. Path: interfaces
Thanks for the help.