Skip to main content

BasicAuthConfig

Config required if BASIC_AUTH is used.

Properties

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

Example

from sailpoint.beta.models.basic_auth_config import BasicAuthConfig

basic_auth_config = BasicAuthConfig(
user_name='[email protected]',
password=''
)

[Back to top]