Closed yidianyipie closed 2 years ago
Hi @Guxing0321,
We are working on a new release right now, we will look at this issue as soon as we get time.
Hi @sarya-infoblox
Thanks for your reply, hope for your update soon
BR Robin
Hi @Guxing0321,
Earlier the update was not working on AAAARecord and we were working on the bug. Now, the issue is fixed and merged successfully. Just update your 'infoblox-client' plugin from GitHub as the code is yet to released on pip
Use the below method to update your AAAArecord,
a_s = objects.AAAARecord.search(conn, name="demo_test.com")
setattr(a_s, "ipv6addr", "1000::56")
setattr(a_s, "name", "test_zone.com")
setattr(a_s, "comment", "Modifiied")
a_s.update()
print("\n\nupdating record as:", a_s)
# Search Updated
u_s = objects.AAAARecord.search(conn, name="test_zone.com")
print("\n\n Updated Record", u_s)
Let me know if this is working for you.
Hi @sarya-infoblox
Thanks for your reply, the issue is resolved by your update. Thanks for your greate job
BR Robin
Hi team,
I recently find the ipv6addr update not work
code blow:
And the result is original
Could you please give some advice on it ?
BR Robin