@@ -37,6 +37,7 @@ class AccountGeneralSettings(object):
3737 'account_default_key_item_id' : 'int' ,
3838 'account_default_key_name' : 'str' ,
3939 'ai_insights' : 'AiInsightsSetting' ,
40+ 'allowed_client_types' : 'AllowedClientType' ,
4041 'allowed_clients_ips' : 'AllowedIpSettings' ,
4142 'allowed_gateways_ips' : 'AllowedIpSettings' ,
4243 'auth_usage_event' : 'UsageEventSetting' ,
@@ -62,6 +63,7 @@ class AccountGeneralSettings(object):
6263 'account_default_key_item_id' : 'account_default_key_item_id' ,
6364 'account_default_key_name' : 'account_default_key_name' ,
6465 'ai_insights' : 'ai_insights' ,
66+ 'allowed_client_types' : 'allowed_client_types' ,
6567 'allowed_clients_ips' : 'allowed_clients_ips' ,
6668 'allowed_gateways_ips' : 'allowed_gateways_ips' ,
6769 'auth_usage_event' : 'auth_usage_event' ,
@@ -83,7 +85,7 @@ class AccountGeneralSettings(object):
8385 'sharing_policy' : 'sharing_policy'
8486 }
8587
86- def __init__ (self , account_default_key_item_id = None , account_default_key_name = None , ai_insights = None , allowed_clients_ips = None , allowed_gateways_ips = None , auth_usage_event = None , certificate_expiration_events = 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
88+ def __init__ (self , account_default_key_item_id = None , account_default_key_name = None , ai_insights = None , allowed_client_types = None , allowed_clients_ips = None , allowed_gateways_ips = None , auth_usage_event = None , certificate_expiration_events = 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
8789 """AccountGeneralSettings - a model defined in OpenAPI""" # noqa: E501
8890 if local_vars_configuration is None :
8991 local_vars_configuration = Configuration ()
@@ -92,6 +94,7 @@ def __init__(self, account_default_key_item_id=None, account_default_key_name=No
9294 self ._account_default_key_item_id = None
9395 self ._account_default_key_name = None
9496 self ._ai_insights = None
97+ self ._allowed_client_types = None
9598 self ._allowed_clients_ips = None
9699 self ._allowed_gateways_ips = None
97100 self ._auth_usage_event = None
@@ -119,6 +122,8 @@ def __init__(self, account_default_key_item_id=None, account_default_key_name=No
119122 self .account_default_key_name = account_default_key_name
120123 if ai_insights is not None :
121124 self .ai_insights = ai_insights
125+ if allowed_client_types is not None :
126+ self .allowed_client_types = allowed_client_types
122127 if allowed_clients_ips is not None :
123128 self .allowed_clients_ips = allowed_clients_ips
124129 if allowed_gateways_ips is not None :
@@ -225,6 +230,27 @@ def ai_insights(self, ai_insights):
225230
226231 self ._ai_insights = ai_insights
227232
233+ @property
234+ def allowed_client_types (self ):
235+ """Gets the allowed_client_types of this AccountGeneralSettings. # noqa: E501
236+
237+
238+ :return: The allowed_client_types of this AccountGeneralSettings. # noqa: E501
239+ :rtype: AllowedClientType
240+ """
241+ return self ._allowed_client_types
242+
243+ @allowed_client_types .setter
244+ def allowed_client_types (self , allowed_client_types ):
245+ """Sets the allowed_client_types of this AccountGeneralSettings.
246+
247+
248+ :param allowed_client_types: The allowed_client_types of this AccountGeneralSettings. # noqa: E501
249+ :type: AllowedClientType
250+ """
251+
252+ self ._allowed_client_types = allowed_client_types
253+
228254 @property
229255 def allowed_clients_ips (self ):
230256 """Gets the allowed_clients_ips of this AccountGeneralSettings. # noqa: E501
0 commit comments