Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.55 KB

File metadata and controls

33 lines (24 loc) · 1.55 KB

PatchedUniquePasswordPolicyRequest

Password Uniqueness Policy Serializer

Properties

Name Type Description Notes
name str [optional]
execution_logging bool When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged. [optional]
password_field str Field key to check, field keys defined in Prompt stages are available. [optional]
num_historical_passwords int Number of passwords to check against. [optional]

Example

from authentik_client.models.patched_unique_password_policy_request import PatchedUniquePasswordPolicyRequest

# TODO update the JSON string below
json = "{}"
# create an instance of PatchedUniquePasswordPolicyRequest from a JSON string
patched_unique_password_policy_request_instance = PatchedUniquePasswordPolicyRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedUniquePasswordPolicyRequest.to_json())

# convert the object into a dict
patched_unique_password_policy_request_dict = patched_unique_password_policy_request_instance.to_dict()
# create an instance of PatchedUniquePasswordPolicyRequest from a dict
patched_unique_password_policy_request_from_dict = PatchedUniquePasswordPolicyRequest.from_dict(patched_unique_password_policy_request_dict)

[Back to Model list] [Back to API list] [Back to README]