55
66 The purpose of this application is to provide access to Akeyless API. # noqa: E501
77
8- The version of the OpenAPI document: 3 .0
8+ The version of the OpenAPI document: 2 .0
99 Contact: support@akeyless.io
1010 Generated by: https://openapi-generator.tech
1111"""
@@ -43,6 +43,8 @@ class AccountGeneralSettings(object):
4343 'default_home_page' : 'DefaultHomePage' ,
4444 'dynamic_secret_max_ttl' : 'DynamicSecretMaxTtl' ,
4545 'enable_request_for_access' : 'bool' ,
46+ 'hide_personal_folder' : 'bool' ,
47+ 'hide_static_password' : 'bool' ,
4648 'invalid_characters' : 'str' ,
4749 'item_usage_event' : 'UsageEventSetting' ,
4850 'lock_default_key' : 'bool' ,
@@ -64,6 +66,8 @@ class AccountGeneralSettings(object):
6466 'default_home_page' : 'default_home_page' ,
6567 'dynamic_secret_max_ttl' : 'dynamic_secret_max_ttl' ,
6668 'enable_request_for_access' : 'enable_request_for_access' ,
69+ 'hide_personal_folder' : 'hide_personal_folder' ,
70+ 'hide_static_password' : 'hide_static_password' ,
6771 'invalid_characters' : 'invalid_characters' ,
6872 'item_usage_event' : 'item_usage_event' ,
6973 'lock_default_key' : 'lock_default_key' ,
@@ -75,7 +79,7 @@ class AccountGeneralSettings(object):
7579 'sharing_policy' : 'sharing_policy'
7680 }
7781
78- def __init__ (self , account_default_key_item_id = None , account_default_key_name = None , allowed_clients_ips = None , allowed_gateways_ips = None , auth_usage_event = None , data_protection_section = None , default_home_page = None , dynamic_secret_max_ttl = None , enable_request_for_access = None , invalid_characters = None , item_usage_event = None , lock_default_key = None , password_expiration_info = None , password_policy = None , password_score = None , protect_items_by_default = None , rotation_secret_max_interval = None , sharing_policy = None , local_vars_configuration = None ): # noqa: E501
82+ def __init__ (self , account_default_key_item_id = None , account_default_key_name = None , allowed_clients_ips = None , allowed_gateways_ips = None , auth_usage_event = None , data_protection_section = None , default_home_page = None , dynamic_secret_max_ttl = None , enable_request_for_access = None , hide_personal_folder = None , hide_static_password = None , invalid_characters = None , item_usage_event = None , lock_default_key = None , password_expiration_info = None , password_policy = None , password_score = None , protect_items_by_default = None , rotation_secret_max_interval = None , sharing_policy = None , local_vars_configuration = None ): # noqa: E501
7983 """AccountGeneralSettings - a model defined in OpenAPI""" # noqa: E501
8084 if local_vars_configuration is None :
8185 local_vars_configuration = Configuration ()
@@ -90,6 +94,8 @@ def __init__(self, account_default_key_item_id=None, account_default_key_name=No
9094 self ._default_home_page = None
9195 self ._dynamic_secret_max_ttl = None
9296 self ._enable_request_for_access = None
97+ self ._hide_personal_folder = None
98+ self ._hide_static_password = None
9399 self ._invalid_characters = None
94100 self ._item_usage_event = None
95101 self ._lock_default_key = None
@@ -119,6 +125,10 @@ def __init__(self, account_default_key_item_id=None, account_default_key_name=No
119125 self .dynamic_secret_max_ttl = dynamic_secret_max_ttl
120126 if enable_request_for_access is not None :
121127 self .enable_request_for_access = enable_request_for_access
128+ if hide_personal_folder is not None :
129+ self .hide_personal_folder = hide_personal_folder
130+ if hide_static_password is not None :
131+ self .hide_static_password = hide_static_password
122132 if invalid_characters is not None :
123133 self .invalid_characters = invalid_characters
124134 if item_usage_event is not None :
@@ -331,6 +341,48 @@ def enable_request_for_access(self, enable_request_for_access):
331341
332342 self ._enable_request_for_access = enable_request_for_access
333343
344+ @property
345+ def hide_personal_folder (self ):
346+ """Gets the hide_personal_folder of this AccountGeneralSettings. # noqa: E501
347+
348+
349+ :return: The hide_personal_folder of this AccountGeneralSettings. # noqa: E501
350+ :rtype: bool
351+ """
352+ return self ._hide_personal_folder
353+
354+ @hide_personal_folder .setter
355+ def hide_personal_folder (self , hide_personal_folder ):
356+ """Sets the hide_personal_folder of this AccountGeneralSettings.
357+
358+
359+ :param hide_personal_folder: The hide_personal_folder of this AccountGeneralSettings. # noqa: E501
360+ :type: bool
361+ """
362+
363+ self ._hide_personal_folder = hide_personal_folder
364+
365+ @property
366+ def hide_static_password (self ):
367+ """Gets the hide_static_password of this AccountGeneralSettings. # noqa: E501
368+
369+
370+ :return: The hide_static_password of this AccountGeneralSettings. # noqa: E501
371+ :rtype: bool
372+ """
373+ return self ._hide_static_password
374+
375+ @hide_static_password .setter
376+ def hide_static_password (self , hide_static_password ):
377+ """Sets the hide_static_password of this AccountGeneralSettings.
378+
379+
380+ :param hide_static_password: The hide_static_password of this AccountGeneralSettings. # noqa: E501
381+ :type: bool
382+ """
383+
384+ self ._hide_static_password = hide_static_password
385+
334386 @property
335387 def invalid_characters (self ):
336388 """Gets the invalid_characters of this AccountGeneralSettings. # noqa: E501
0 commit comments