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

1.2 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
beta-password-status PasswordStatus PasswordStatus PasswordStatus pythonsdk
python
Python
sdk
PasswordStatus
BetaPasswordStatus
/tools/sdk/python/beta/models/password-status
SDK
Software Development Kit
PasswordStatus
BetaPasswordStatus

PasswordStatus

Properties

Name Type Description Notes
request_id str The password change request ID [optional]
state Enum [ 'IN_PROGRESS', 'FINISHED', 'FAILED' ] Password change state [optional]
errors []str The errors during the password change request [optional]
source_ids []str List of source IDs in the password change request [optional]
}

Example

from sailpoint.beta.models.password_status import PasswordStatus

password_status = PasswordStatus(
request_id='089899f13a8f4da7824996191587bab9',
state='IN_PROGRESS',
errors=[
                    ''
                    ],
source_ids=[
                    ''
                    ]
)

[Back to top]