add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2025-password-org-config
title: PasswordOrgConfig
pagination_label: PasswordOrgConfig
sidebar_label: PasswordOrgConfig
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'PasswordOrgConfig', 'V2025PasswordOrgConfig']
slug: /tools/sdk/python/v2025/models/password-org-config
tags: ['SDK', 'Software Development Kit', 'PasswordOrgConfig', 'V2025PasswordOrgConfig']
---
# PasswordOrgConfig
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**custom_instructions_enabled** | **bool** | Indicator whether custom password instructions feature is enabled. The default value is false. | [optional] [default to False]
**digit_token_enabled** | **bool** | Indicator whether \"digit token\" feature is enabled. The default value is false. | [optional] [default to False]
**digit_token_duration_minutes** | **int** | The duration of \"digit token\" in minutes. The default value is 5. | [optional] [default to 5]
**digit_token_length** | **int** | The length of \"digit token\". The default value is 6. | [optional] [default to 6]
}
## Example
```python
from sailpoint.v2025.models.password_org_config import PasswordOrgConfig
password_org_config = PasswordOrgConfig(
custom_instructions_enabled=True,
digit_token_enabled=True,
digit_token_duration_minutes=10,
digit_token_length=9
)
```
[[Back to top]](#)