Skip to main content

PasswordPolicyV3Dto

Properties

NameTypeDescriptionNotes
idstrThe password policy Id.[optional]
descriptionstrDescription for current password policy.[optional]
namestrThe name of the password policy.[optional]
date_createddatetimeDate the Password Policy was created.[optional]
last_updateddatetimeDate the Password Policy was updated.[optional]
first_expiration_reminderintThe number of days before expiration remaninder.[optional]
account_id_min_word_lengthintThe minimun length of account Id. By default is equals to -1.[optional]
account_name_min_word_lengthintThe minimun length of account name. By default is equals to -1.[optional]
min_alphaintMaximum alpha. By default is equals to 0.[optional]
min_character_typesintMinCharacterTypes. By default is equals to -1.[optional]
max_lengthintMaximum length of the password.[optional]
min_lengthintMinimum length of the password. By default is equals to 0.[optional]
max_repeated_charsintMaximum repetition of the same character in the password. By default is equals to -1.[optional]
min_lowerintMinimum amount of lower case character in the password. By default is equals to 0.[optional]
min_numericintMinimum amount of numeric characters in the password. By default is equals to 0.[optional]
min_specialintMinimum amount of special symbols in the password. By default is equals to 0.[optional]
min_upperintMinimum amount of upper case symbols in the password. By default is equals to 0.[optional]
password_expirationintNumber of days before current password expires. By default is equals to 90.[optional]
default_policyboolDefines whether this policy is default or not. Default policy is created automatically when an org is setup. This field is false by default.[optional] [default to False]
enable_passwd_expirationboolDefines whether this policy is enabled to expire or not. This field is false by default.[optional] [default to False]
require_strong_authnboolDefines whether this policy require strong Auth or not. This field is false by default.[optional] [default to False]
require_strong_auth_off_networkboolDefines whether this policy require strong Auth of network or not. This field is false by default.[optional] [default to False]
require_strong_auth_untrusted_geographiesboolDefines whether this policy require strong Auth for untrusted geographies. This field is false by default.[optional] [default to False]
use_account_attributesboolDefines whether this policy uses account attributes or not. This field is false by default.[optional] [default to False]
use_dictionaryboolDefines whether this policy uses dictionary or not. This field is false by default.[optional] [default to False]
use_identity_attributesboolDefines whether this policy uses identity attributes or not. This field is false by default.[optional] [default to False]
validate_against_account_idboolDefines whether this policy validate against account id or not. This field is false by default.[optional] [default to False]
validate_against_account_nameboolDefines whether this policy validate against account name or not. This field is false by default.[optional] [default to False]
createdstr[optional]
modifiedstr[optional]
source_ids[]strList of sources IDs managed by this password policy.[optional]
}

Example

from sailpoint.beta.models.password_policy_v3_dto import PasswordPolicyV3Dto

password_policy_v3_dto = PasswordPolicyV3Dto(
id='2c91808e7d976f3b017d9f5ceae440c8',
description='Information about the Password Policy',
name='PasswordPolicy Example',
date_created=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
last_updated=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
first_expiration_reminder=45,
account_id_min_word_length=4,
account_name_min_word_length=6,
min_alpha=5,
min_character_types=5,
max_length=25,
min_length=8,
max_repeated_chars=3,
min_lower=8,
min_numeric=8,
min_special=8,
min_upper=8,
password_expiration=8,
default_policy=True,
enable_passwd_expiration=True,
require_strong_authn=True,
require_strong_auth_off_network=True,
require_strong_auth_untrusted_geographies=True,
use_account_attributes=False,
use_dictionary=False,
use_identity_attributes=False,
validate_against_account_id=False,
validate_against_account_name=True,
created='',
modified='',
source_ids=[2c91808382ffee0b01830de154f14034, 2f98808382ffee0b01830de154f12134]
)

[Back to top]