Created
November 3, 2019 06:39
-
-
Save afaqk9394/de5dc6b8874d1bee3c30d80bca1770b7 to your computer and use it in GitHub Desktop.
list of all ACI nodes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from acitoolkit.acisession import Session | |
| from acitoolkit.aciphysobject import Node | |
| url = 'https://sandboxapicdc.cisco.com' | |
| usr_name = 'admin' | |
| password = 'ciscopsdt' | |
| session = Session(url, usr_name, password) | |
| nodes = Node.get(session) | |
| for node in nodes: | |
| print (node.name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment