Skip to content

Commit 84b68c5

Browse files
committed
update
2 parents 578a3cc + 2599003 commit 84b68c5

File tree

3 files changed

+160
-4
lines changed

3 files changed

+160
-4
lines changed

meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"lasted": "1.0.75",
3-
"meta_commit": "9c75febf3381cbd93fed6ff801265711635bd8e5"
4-
}
3+
"meta_commit": "556dd5e654b2e38d261036504357f199c5cd62c5"
4+
}

volcenginesdkiam/models/create_login_profile_request.py

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,23 @@ class CreateLoginProfileRequest(object):
3636
'login_allowed': 'bool',
3737
'password': 'str',
3838
'password_reset_required': 'bool',
39+
'safe_auth_exempt_duration': 'int',
40+
'safe_auth_flag': 'bool',
41+
'safe_auth_type': 'str',
3942
'user_name': 'str'
4043
}
4144

4245
attribute_map = {
4346
'login_allowed': 'LoginAllowed',
4447
'password': 'Password',
4548
'password_reset_required': 'PasswordResetRequired',
49+
'safe_auth_exempt_duration': 'SafeAuthExemptDuration',
50+
'safe_auth_flag': 'SafeAuthFlag',
51+
'safe_auth_type': 'SafeAuthType',
4652
'user_name': 'UserName'
4753
}
4854

49-
def __init__(self, login_allowed=None, password=None, password_reset_required=None, user_name=None, _configuration=None): # noqa: E501
55+
def __init__(self, login_allowed=None, password=None, password_reset_required=None, safe_auth_exempt_duration=None, safe_auth_flag=None, safe_auth_type=None, user_name=None, _configuration=None): # noqa: E501
5056
"""CreateLoginProfileRequest - a model defined in Swagger""" # noqa: E501
5157
if _configuration is None:
5258
_configuration = Configuration()
@@ -55,6 +61,9 @@ def __init__(self, login_allowed=None, password=None, password_reset_required=No
5561
self._login_allowed = None
5662
self._password = None
5763
self._password_reset_required = None
64+
self._safe_auth_exempt_duration = None
65+
self._safe_auth_flag = None
66+
self._safe_auth_type = None
5867
self._user_name = None
5968
self.discriminator = None
6069

@@ -63,6 +72,12 @@ def __init__(self, login_allowed=None, password=None, password_reset_required=No
6372
self.password = password
6473
if password_reset_required is not None:
6574
self.password_reset_required = password_reset_required
75+
if safe_auth_exempt_duration is not None:
76+
self.safe_auth_exempt_duration = safe_auth_exempt_duration
77+
if safe_auth_flag is not None:
78+
self.safe_auth_flag = safe_auth_flag
79+
if safe_auth_type is not None:
80+
self.safe_auth_type = safe_auth_type
6681
self.user_name = user_name
6782

6883
@property
@@ -130,6 +145,69 @@ def password_reset_required(self, password_reset_required):
130145

131146
self._password_reset_required = password_reset_required
132147

148+
@property
149+
def safe_auth_exempt_duration(self):
150+
"""Gets the safe_auth_exempt_duration of this CreateLoginProfileRequest. # noqa: E501
151+
152+
153+
:return: The safe_auth_exempt_duration of this CreateLoginProfileRequest. # noqa: E501
154+
:rtype: int
155+
"""
156+
return self._safe_auth_exempt_duration
157+
158+
@safe_auth_exempt_duration.setter
159+
def safe_auth_exempt_duration(self, safe_auth_exempt_duration):
160+
"""Sets the safe_auth_exempt_duration of this CreateLoginProfileRequest.
161+
162+
163+
:param safe_auth_exempt_duration: The safe_auth_exempt_duration of this CreateLoginProfileRequest. # noqa: E501
164+
:type: int
165+
"""
166+
167+
self._safe_auth_exempt_duration = safe_auth_exempt_duration
168+
169+
@property
170+
def safe_auth_flag(self):
171+
"""Gets the safe_auth_flag of this CreateLoginProfileRequest. # noqa: E501
172+
173+
174+
:return: The safe_auth_flag of this CreateLoginProfileRequest. # noqa: E501
175+
:rtype: bool
176+
"""
177+
return self._safe_auth_flag
178+
179+
@safe_auth_flag.setter
180+
def safe_auth_flag(self, safe_auth_flag):
181+
"""Sets the safe_auth_flag of this CreateLoginProfileRequest.
182+
183+
184+
:param safe_auth_flag: The safe_auth_flag of this CreateLoginProfileRequest. # noqa: E501
185+
:type: bool
186+
"""
187+
188+
self._safe_auth_flag = safe_auth_flag
189+
190+
@property
191+
def safe_auth_type(self):
192+
"""Gets the safe_auth_type of this CreateLoginProfileRequest. # noqa: E501
193+
194+
195+
:return: The safe_auth_type of this CreateLoginProfileRequest. # noqa: E501
196+
:rtype: str
197+
"""
198+
return self._safe_auth_type
199+
200+
@safe_auth_type.setter
201+
def safe_auth_type(self, safe_auth_type):
202+
"""Sets the safe_auth_type of this CreateLoginProfileRequest.
203+
204+
205+
:param safe_auth_type: The safe_auth_type of this CreateLoginProfileRequest. # noqa: E501
206+
:type: str
207+
"""
208+
209+
self._safe_auth_type = safe_auth_type
210+
133211
@property
134212
def user_name(self):
135213
"""Gets the user_name of this CreateLoginProfileRequest. # noqa: E501

volcenginesdkiam/models/update_login_profile_request.py

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,23 @@ class UpdateLoginProfileRequest(object):
3636
'login_allowed': 'bool',
3737
'password': 'str',
3838
'password_reset_required': 'bool',
39+
'safe_auth_exempt_duration': 'int',
40+
'safe_auth_flag': 'bool',
41+
'safe_auth_type': 'str',
3942
'user_name': 'str'
4043
}
4144

4245
attribute_map = {
4346
'login_allowed': 'LoginAllowed',
4447
'password': 'Password',
4548
'password_reset_required': 'PasswordResetRequired',
49+
'safe_auth_exempt_duration': 'SafeAuthExemptDuration',
50+
'safe_auth_flag': 'SafeAuthFlag',
51+
'safe_auth_type': 'SafeAuthType',
4652
'user_name': 'UserName'
4753
}
4854

49-
def __init__(self, login_allowed=None, password=None, password_reset_required=None, user_name=None, _configuration=None): # noqa: E501
55+
def __init__(self, login_allowed=None, password=None, password_reset_required=None, safe_auth_exempt_duration=None, safe_auth_flag=None, safe_auth_type=None, user_name=None, _configuration=None): # noqa: E501
5056
"""UpdateLoginProfileRequest - a model defined in Swagger""" # noqa: E501
5157
if _configuration is None:
5258
_configuration = Configuration()
@@ -55,6 +61,9 @@ def __init__(self, login_allowed=None, password=None, password_reset_required=No
5561
self._login_allowed = None
5662
self._password = None
5763
self._password_reset_required = None
64+
self._safe_auth_exempt_duration = None
65+
self._safe_auth_flag = None
66+
self._safe_auth_type = None
5867
self._user_name = None
5968
self.discriminator = None
6069

@@ -64,6 +73,12 @@ def __init__(self, login_allowed=None, password=None, password_reset_required=No
6473
self.password = password
6574
if password_reset_required is not None:
6675
self.password_reset_required = password_reset_required
76+
if safe_auth_exempt_duration is not None:
77+
self.safe_auth_exempt_duration = safe_auth_exempt_duration
78+
if safe_auth_flag is not None:
79+
self.safe_auth_flag = safe_auth_flag
80+
if safe_auth_type is not None:
81+
self.safe_auth_type = safe_auth_type
6782
self.user_name = user_name
6883

6984
@property
@@ -129,6 +144,69 @@ def password_reset_required(self, password_reset_required):
129144

130145
self._password_reset_required = password_reset_required
131146

147+
@property
148+
def safe_auth_exempt_duration(self):
149+
"""Gets the safe_auth_exempt_duration of this UpdateLoginProfileRequest. # noqa: E501
150+
151+
152+
:return: The safe_auth_exempt_duration of this UpdateLoginProfileRequest. # noqa: E501
153+
:rtype: int
154+
"""
155+
return self._safe_auth_exempt_duration
156+
157+
@safe_auth_exempt_duration.setter
158+
def safe_auth_exempt_duration(self, safe_auth_exempt_duration):
159+
"""Sets the safe_auth_exempt_duration of this UpdateLoginProfileRequest.
160+
161+
162+
:param safe_auth_exempt_duration: The safe_auth_exempt_duration of this UpdateLoginProfileRequest. # noqa: E501
163+
:type: int
164+
"""
165+
166+
self._safe_auth_exempt_duration = safe_auth_exempt_duration
167+
168+
@property
169+
def safe_auth_flag(self):
170+
"""Gets the safe_auth_flag of this UpdateLoginProfileRequest. # noqa: E501
171+
172+
173+
:return: The safe_auth_flag of this UpdateLoginProfileRequest. # noqa: E501
174+
:rtype: bool
175+
"""
176+
return self._safe_auth_flag
177+
178+
@safe_auth_flag.setter
179+
def safe_auth_flag(self, safe_auth_flag):
180+
"""Sets the safe_auth_flag of this UpdateLoginProfileRequest.
181+
182+
183+
:param safe_auth_flag: The safe_auth_flag of this UpdateLoginProfileRequest. # noqa: E501
184+
:type: bool
185+
"""
186+
187+
self._safe_auth_flag = safe_auth_flag
188+
189+
@property
190+
def safe_auth_type(self):
191+
"""Gets the safe_auth_type of this UpdateLoginProfileRequest. # noqa: E501
192+
193+
194+
:return: The safe_auth_type of this UpdateLoginProfileRequest. # noqa: E501
195+
:rtype: str
196+
"""
197+
return self._safe_auth_type
198+
199+
@safe_auth_type.setter
200+
def safe_auth_type(self, safe_auth_type):
201+
"""Sets the safe_auth_type of this UpdateLoginProfileRequest.
202+
203+
204+
:param safe_auth_type: The safe_auth_type of this UpdateLoginProfileRequest. # noqa: E501
205+
:type: str
206+
"""
207+
208+
self._safe_auth_type = safe_auth_type
209+
132210
@property
133211
def user_name(self):
134212
"""Gets the user_name of this UpdateLoginProfileRequest. # noqa: E501

0 commit comments

Comments
 (0)