Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/BasicAuthConfig.md
2025-05-07 14:37:48 +00:00

986 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-basic-auth-config BasicAuthConfig BasicAuthConfig BasicAuthConfig powershellsdk
powershell
PowerShell
sdk
BasicAuthConfig
BetaBasicAuthConfig
/tools/sdk/powershell/beta/models/basic-auth-config
SDK
Software Development Kit
BasicAuthConfig
BetaBasicAuthConfig

BasicAuthConfig

Properties

Name Type Description Notes
UserName String The username to authenticate. [optional]
Password String The password to authenticate. On response, this field is set to null as to not return secrets. [optional]

Examples

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

[Back to top]