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

1.3 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-org-config PasswordOrgConfig PasswordOrgConfig PasswordOrgConfig pythonsdk
python
Python
sdk
PasswordOrgConfig
PasswordOrgConfig
/tools/sdk/python/v3/models/password-org-config
SDK
Software Development Kit
PasswordOrgConfig
PasswordOrgConfig

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

from sailpoint.v3.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]