Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/PasswordInfoAccount.md
2025-02-20 12:59:19 -05:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
password-info-account PasswordInfoAccount PasswordInfoAccount PasswordInfoAccount pythonsdk
python
Python
sdk
PasswordInfoAccount
PasswordInfoAccount
/tools/sdk/python/v3/models/password-info-account
SDK
Software Development Kit
PasswordInfoAccount
PasswordInfoAccount

PasswordInfoAccount

Properties

Name Type Description Notes
account_id str Account ID of the account. This is specified per account schema in the source configuration. It is used to distinguish accounts. More info can be found here https://community.sailpoint.com/t5/IdentityNow-Connectors/How-do-I-designate-an-account-attribute-as-the-Account-ID-for-a/ta-p/80350 [optional]
account_name str Display name of the account. This is specified per account schema in the source configuration. It is used to display name of the account. More info can be found here https://community.sailpoint.com/t5/IdentityNow-Connectors/How-do-I-designate-an-account-attribute-as-the-Account-Name-for/ta-p/74008 [optional]
}

Example

from sailpoint.v3.models.password_info_account import PasswordInfoAccount

password_info_account = PasswordInfoAccount(
account_id='CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com',
account_name='Abby.Smith'
)

[Back to top]