python rest api: How to get profiles details?
with code like this I can get list of virtuals and list of their applied profiles, but all I get for a profile is name and partition...
How do I get the actual profile objects so I can inspect their details?
vips = mgmt.tm.ltm.virtuals.get_collection()
for vip in vips:
print(vip.name)
profiles = vip.profiles_s.get_collection()
for p in profiles:
print("/{}/{}: {}".format(p.partition,p.name,p))