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

[Back to top]