Git Product home page Git Product logo

Comments (3)

kprav33n avatar kprav33n commented on August 28, 2024 1

I'm not sure what exactly you are trying to do. I'm assuming that you are retrieving LLDP adjacencies for a given port (fabric PathEp DN). This is my recommendation on how to do it. (There are many ways of doing this)

[iface] = leaf.methods.ResolveClass('lldpIf').GET(**(
    options.filter(filters.Eq('lldpIf.portDesc', 
                              'topology/pod-3/paths-1017/pathep-[eth1/23]')) & 
    options.rspSubtreeClass('lldpAdjEp')))
for adj in iface.lldpAdjEp:
    print(f'Adjacency {adj.id} => {adj.sysName}:{adj.portDesc}')

Output

Adjacency 1 => ifav11-n3k-5:Ethernet1/15

from pyaci.

kprav33n avatar kprav33n commented on August 28, 2024

These options are passed on to the server using the URL constructed. Please look at the query filters section in this documentation. IIRC, subtreeClass is applicable only when you are using it with rspSubtreeFull or rspSubtreeChildren. Please turn on logging to see the corresponding REST API requests it is making.

import logging
logging.basicConfig(level=logging.INFO)
logging.getLogger('pyaci').setLevel(logging.DEBUG)

from pyaci.

camrossi avatar camrossi commented on August 28, 2024

I see, thanks the logging was also very helpful :)

Like this works

lldp_neighbours = apic.methods.ResolveClass('lldpIf').GET(**options.filter(
filters.Eq('lldpIf.portDesc',path.tDn)) & 
options.rspSubtreeChildren & options.subtreeClass('lldpAdjEp,lldpIf'))

Just wondering why I have to add lldpIf in the subtreeClass as I would think lldpIfis the root of the tree? But might be how APIC works.

Regardless thanks a lot !!!

EDIT: Figured the above out, I need to use rspSubtreeClass not subtreeClass

from pyaci.

Related Issues (18)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.