I've gotten the test queries from the orionsdk-python git repo working, and have an understanding of editing managed nodes, but am I able to make DHCP reservations and DNS entries with the python sdk? Does anyone have an example I can review?
Thanks
Have you checked this page? https://github.com/solarwinds/OrionSDK/wiki/IPAM-API
It is straightforward to translate a PowerShell example to Python. If you have a PowerShell call like this:
Invoke-SwisVerb $swis Entity.Name VerbName @( "argument 1", "argument 2", "etc." )
You can make a python call like this:
swis.invoke('Entity.Name', 'VerbName', 'argument 1', 'argument 2', 'etc.')
Ahh thanks, I just wasn't putting two and two together.