I have a working Python scrip that creates a discovery using a single set of credentials. How do i create a discovery which can using multiple sets of credentials?
This is what i have at the moment.
credential_id = 9
orion_engine_id = 1
swis = SwisClient(npm_server, username, password)
corePluginContext = {
'BulkList': [{'Address': target_node_ip}],
'Credentials': [
{
'CredentialID': credential_id,
'Order': 1
}
],
'WmiRetriesCount': 0,
'WmiRetryIntervalMiliseconds': 1000
}