Skip to main content

BasicAuthConfig

Properties

NameTypeDescriptionNotes
UserNameStringThe username to authenticate.[optional]
PasswordStringThe password to authenticate. On response, this field is set to null as to not return secrets.[optional]

Examples

  • Prepare the resource
$BasicAuthConfig = Initialize-PSSailpoint.BetaBasicAuthConfig  -UserName user@example.com `
-Password null
  • Convert the resource to JSON
$BasicAuthConfig | ConvertTo-JSON

[Back to top]