Hi, I am writing a script in python using pan-python module to automate Prisma Access onboarding. I can create all kinds configurations and commit changes to Panorama, but I can't seem to find "push to devices" for Prisma access in the API, which is the main purpose of this automation! Has anyone done it before or have an idea on how to push to Prisma with API? try: xapi.commit(cmd="<commit-all></commit-all>", action=all, sync=False, interval=None, timeout=None) except pan.xapi.PanXapiError as msg: print('commit: ', msg, file=sys.stderr) sys.exit(1) Cheers, S
... View more