mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
39
docs/tools/sdk/python/Reference/V3/Models/PasswordStatus.md
Normal file
39
docs/tools/sdk/python/Reference/V3/Models/PasswordStatus.md
Normal file
@@ -0,0 +1,39 @@
|
||||
---
|
||||
id: password-status
|
||||
title: PasswordStatus
|
||||
pagination_label: PasswordStatus
|
||||
sidebar_label: PasswordStatus
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'PasswordStatus', 'PasswordStatus']
|
||||
slug: /tools/sdk/python/v3/models/password-status
|
||||
tags: ['SDK', 'Software Development Kit', 'PasswordStatus', 'PasswordStatus']
|
||||
---
|
||||
|
||||
# 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
|
||||
|
||||
```python
|
||||
from sailpoint.v3.models.password_status import PasswordStatus
|
||||
|
||||
password_status = PasswordStatus(
|
||||
request_id='089899f13a8f4da7824996191587bab9',
|
||||
state='IN_PROGRESS',
|
||||
errors=[The password change payload is invalid],
|
||||
source_ids=[2c918083746f642c01746f990884012a]
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user