SwisPowerShell and updating Connection Profile CLI password
We are trying to use SwisPowershell to change the CLI password for a Connection Profile.
I have been able to get the Connection Profile ID to key off, but unable to find any documentation on the use of the UpdateConnectionProfile verbs.
Is there a way to update the CLI password using SwisPowershell?
7/24 - added
More info: I found in the Metadata.VerbArgument table some info on the verbname for Get, Add, Update, Delete ConnectionProfile. From what I gather the Get and Delete you use the id # and Add and Update you use a name for the profile. I created a test Connection Profile called test_c and I tried to use the deleteconnection verb. Just to see if I can get something working.
The delete command is Invoke-SwisVerb $swisConnection Cirrus.Nodes deleteConnectionProfile @(193)
I do not get an error on this command but it also does not delete id #193 which is test_c. So it is being ignored
So I try adding one with command Invoke-SwisVerb $swisConnection Cirrus.Nodes addConnectionProfile @("CCC")
The error I get is Invoke-SwisVerb : Verb Cirrus.Nodes.addConnectionProfile cannot unpackage parameter 0 of type
SolarWinds.NCM.Contracts.InformationService.ConnectionProfile
I hope this info can help direct me to the right code to updateconnectionprofile test_c with a new password script.