Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/BasicAuthConfig.md
2025-02-03 22:09:17 +00:00

1003 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
v2024-basic-auth-config BasicAuthConfig BasicAuthConfig BasicAuthConfig powershellsdk
powershell
PowerShell
sdk
BasicAuthConfig
V2024BasicAuthConfig
/tools/sdk/powershell/v2024/models/basic-auth-config
SDK
Software Development Kit
BasicAuthConfig
V2024BasicAuthConfig

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-PSSailpoint.V2024BasicAuthConfig  -UserName user@example.com `
 -Password null
  • Convert the resource to JSON
$BasicAuthConfig | ConvertTo-JSON

[Back to top]