I am trying to get details of the members in the pool using something similar to
pool_a = bigip.ltm.pools.pool.load(name=virtual.pool.split('/')[2], partition=virtual.pool.split('/')[1])
members = pool_a.members_s.members
for member in members:
print (member.name)
This fails since I am not able to iterate through members.