├── .gitignore ├── LICENSE ├── README.md ├── nx-api ├── NX-API Examples.postman_collection.json ├── README.md ├── Sandbox Always On Open NX-OS Programmability.postman_environment.json └── postman.jpg └── yang ├── README.md ├── add_loopback_full.py ├── delete_loopback.py ├── get_capabilities.py ├── get_loopbacks.py ├── get_serial.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/README.md -------------------------------------------------------------------------------- /nx-api/NX-API Examples.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/nx-api/NX-API Examples.postman_collection.json -------------------------------------------------------------------------------- /nx-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/nx-api/README.md -------------------------------------------------------------------------------- /nx-api/Sandbox Always On Open NX-OS Programmability.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/nx-api/Sandbox Always On Open NX-OS Programmability.postman_environment.json -------------------------------------------------------------------------------- /nx-api/postman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/nx-api/postman.jpg -------------------------------------------------------------------------------- /yang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/yang/README.md -------------------------------------------------------------------------------- /yang/add_loopback_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/yang/add_loopback_full.py -------------------------------------------------------------------------------- /yang/delete_loopback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/yang/delete_loopback.py -------------------------------------------------------------------------------- /yang/get_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/yang/get_capabilities.py -------------------------------------------------------------------------------- /yang/get_loopbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/yang/get_loopbacks.py -------------------------------------------------------------------------------- /yang/get_serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevNetSandbox/sbx_nxos_ao/HEAD/yang/get_serial.py -------------------------------------------------------------------------------- /yang/requirements.txt: -------------------------------------------------------------------------------- 1 | ncclient 2 | xmltodict 3 | --------------------------------------------------------------------------------