Getting Started with the f5-common-python SDK
If you have dabbled with python and iControl over the years, you might be familiar with some of my other “Getting Stared with …” articles on python libraries. I started my last, on Bigsuds, this way:...
Updated Jun 06, 2023
Version 2.0JRahm
Admin
Joined January 20, 2005
Kurt_Kite_11866
Feb 26, 2018Nimbostratus
Hi Aaron,
When I have encountered with error it meant that the attribute I was trying to access was not present. In my case, this attribute was optional so I had to check for existence before trying to access it, e.g.:
if hasattr(virtual, "rules"): data["vs_rules"] = virtual.rules
Best Regards, Kurt