Hi All, I am working to get automation script for creating address objects and binding it to address group. I was able to get the script ready and tested working for adding address objects to a firewall using API call. The script is written with pandevice in python. However, I am looking for syntax/command of pandevice to add those address objects to a address group - new/existing, has anyone used it? Pandevice command on python to create address object: import pandevice fw = firewall.Firewall(<firewall_IP>, <api_Key>) fw.add(AddressObject(<address_obj_name>,<IP_address>, <description>)).create() I am looking for pandevice syntax to add a address object to a address group (exiting or new group). Please guide. #api #pandevice #python #automation
... View more