f5-common-python
f5-common-python copied to clipboard
sanity checks on update()
Currently most of our sanity checks for parameters rely on **kwargs passed to update(), those sanity checks do not work when the user adds object attributes directly:
r1.description == 'SOMETHING'
r1.update()
vs
r1.update(description='SOMETHING')
```