Name |
Type |
Description |
Notes |
alg |
str |
|
[optional] |
email |
str |
The Email value |
[optional] |
enc_email_with_shared_key |
str |
EncEmailWithSharedKey is the email of this auth method, encrypted with the shared auth/uam key (for use in uam) |
[optional] |
hash_pass |
str |
The password value |
[optional] |
last_reset_password |
datetime |
The last password change date |
[optional] |
mfa_type |
str |
|
[optional] |
from akeyless.models.email_pass_access_rules import EmailPassAccessRules
# TODO update the JSON string below
json = "{}"
# create an instance of EmailPassAccessRules from a JSON string
email_pass_access_rules_instance = EmailPassAccessRules.from_json(json)
# print the JSON string representation of the object
print(EmailPassAccessRules.to_json())
# convert the object into a dict
email_pass_access_rules_dict = email_pass_access_rules_instance.to_dict()
# create an instance of EmailPassAccessRules from a dict
email_pass_access_rules_from_dict = EmailPassAccessRules.from_dict(email_pass_access_rules_dict)
[Back to Model list] [Back to API list] [Back to README]