f5-common-python
f5-common-python copied to clipboard
Python SDK for configuration and monitoring of F5® BIG-IP® devices via the iControl® REST API.
Hi, I am trying to update the node's "downInternval" and "interval" while I'm adding it to the pool but those values are not changing and stay at default. This is...
I have logged into the F5 and ran my script, but how to make sure the connection closed or not after script ran. I dont see anything like session.close ....
Running on Big-IP 16.1.3.4 using Python 3.9.16 I'm working on a script which needs to create a LTM policy with 1 condition and 2 corresponding actions. Creating the policy and...
If I run Python's `compileall` on code of the `f5-sdk` Python package, I get the following SyntaxWarnings: ``` % python3 -m compileall iapp_parser.py Compiling 'iapp_parser.py'... iapp_parser.py:123: SyntaxWarning: "is" with a...
* Deprecation warning due to invalid escape sequences. Using raw strings or escaping them again helps in resolving this. * Syntax warnings due to comparison of literals using is. Check...
I have an error when when I iterate, the dict ``rdict`` it's modified on line 512.
The virtual server update is broken with BIG-IP 14.x and above. See [K27721265](https://support.f5.com/csp/article/K27721265) and [K13225405](https://support.f5.com/csp/article/K13225405) for details. Based on K13225405, PUT is a dangerous operation, as it leaves unspecified attributes...
I want to delete virtual servers that some other partitions ,but delete_collection() only delete virtual servers in a partition that named Common. eg: mgmt = ManagementRoot("121.42.101.152", "admin", "admin") requests_params =...
Timeout not working ------------------- # Reproduce 1. `ManagementRoot(host, user, pwd, timeout=1)` 2. Timeout of 1 second is not respected # Problem Timeout is not respected. Instead the default timeout for...