I need to query Solarwinds but with Orion (V2) AD. Is there a way to specify Servery Type V2 versus whatever is default within my python code?
The following is my Python code:
from orionsdk import SwisClient
username = "username"
password = "password"
server = "server"
swis = SwisClient(server, username, password)
results = swis.query("select circuitID, syslocation from NCM.Nodes")
print(results)
When I run it and print the query output I get the following:
unknown provider Cirrus
In order to fix this in SWQL Studio I run using Server Type: Orion (V2) AD and it runs correctly with no error.