Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/BasicAuthConfig.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

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

BasicAuthConfig

Properties

Name Type Description Notes
UserName Pointer to String The username to authenticate. [optional]
Password Pointer to 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.BetaBasicAuthConfig  -UserName user@example.com `
 -Password null
  • Convert the resource to JSON
$BasicAuthConfig | ConvertTo-JSON

[Back to top]