* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Forum Discussion
baldrich_344910
Nimbostratus
Dec 26, 2017Sensitive Parameters in ASM
I have an application that when you make parameters sensitive, it allegedly breaks the application. I need to have confirmation that changing a parameter to sensitive by either adding it in the Param...
#!/usr/bin/python
from f5.bigip import ManagementRoot
# Define unique variables
user = 'admin'
password = 'admin'
f5_ip = '10.10.10.10'
partition = 'Common'
mgmt = ManagementRoot(f5_ip, user, password)
ltm = mgmt.tm.ltm
rules = ltm.rules.get_collection()
for rule in rules:
print("---")
print(rule.name)
print("---")
print(rule.apiAnonymous)