Comments
-
I have figured out my issue! I wasn't connecting to the database properly
-
I figured it out! I wasn't connecting properly! #Documentation: https://github.com/solarwinds/OrionSDK/wiki/Credential-Management # Connect to the SolarWinds server $hostname = "{Enter server name}" $username = "{enter username}" $password = "{enter your password}" $secPassword = ConvertTo-SecureString $password…
-
#Documentation: https://github.com/solarwinds/OrionSDK/wiki/Credential-Management # Connect to the SolarWinds server $hostname = "" $username = "" $password = "" $swis = Connect-Swis -Soap12 https://$hostname/swvm/services/InformationService -Username $username -Password $password -IgnoreSslErrors $bearer_token_credset =…
-
I have the same question I looked at the documentation here: Documentation: https://github.com/solarwinds/OrionSDK/wiki/Credential-Management # Connect to the SolarWinds server $hostname = "" $username = "" $password = "" $swis = Connect-Swis -Soap12 https://$hostname/swvm/services/InformationService -Username $username…
-
Orion.Credential UpdateCredentials (int id, Dictionary<string, string> properties) The SWIS verb. I cannot get the second paramater of the function to pass correctly without it throwing an error. I looked at Credential Management · solarwinds/OrionSDK Wiki · GitHub, for what keys it requires. When i formatted it like this…
-
What is the proper format to pass in the properties? What are the specific key and values needed in the XML?