<< Click to Display Table of Contents >> RayFlow PowerShell API > 7.3 > Implementation Guide > Cmdlet Reference Get-RayFlowCredentials |
Creates an instance of PSCredential object that can be used during authentication process.
Name |
Type |
Mandatory |
Description |
UserName |
String |
Yes |
The user name. |
PlainTextPassword |
String |
Yes* |
The open-text password. You cannot use this parameter together with EncryptedTextPassword or EncryptedTextPasswordKey |
EncryptedTextPassword |
String |
Yes* |
The encrypted password. You cannot use this parameter together with PlainTextPassword. If specified, you must also define the value of the EncryptedTextPasswordKey parameter. |
EncryptedTextPasswordKey |
String |
Yes* |
The key that was used for encryption. You cannot use this parameter together with PlainTextPassword. If specified, you must also define the value of the EncryptedTextPassword parameter. |
Type |
Description |
PsCredential |
The credential object that can be used to authenticate the user. |