We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
Struggling to understand the args and kwargs for HostRecord.search(). Trying to emulate the following call
r = conn.get_object('record:host', {'name~': host})
but cant seem to pick the right kwargs. This one worked
kw = {'name': host} r = objects.HostRecord.search(conn, **kw)
but
kw = {'name~': host} r = objects.HostRecord.search(conn, **kw)
didnt 😞.
Does anybody have a working example for ~ operator?
~
TIA!
The text was updated successfully, but these errors were encountered:
Here take a look at this https://sifbaksh.com/how-to-search-for-data-in-infoblox-via-apiwapi-using-python-module/
Sorry, something went wrong.
No branches or pull requests
Hi!
Struggling to understand the args and kwargs for HostRecord.search(). Trying to emulate the following call
but cant seem to pick the right kwargs. This one worked
but
didnt 😞.
Does anybody have a working example for
~
operator?TIA!
The text was updated successfully, but these errors were encountered: