alibabacloud-ecd20201002 1.2.4__tar.gz → 1.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/ChangeLog.md +4 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/PKG-INFO +1 -1
- alibabacloud_ecd20201002-1.2.5/alibabacloud_ecd20201002/__init__.py +1 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002/models.py +6 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/PKG-INFO +1 -1
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/setup.py +1 -1
- alibabacloud_ecd20201002-1.2.4/alibabacloud_ecd20201002/__init__.py +0 -1
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/LICENSE +0 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/MANIFEST.in +0 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/README-CN.md +0 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/README.md +0 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002/client.py +0 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/SOURCES.txt +0 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/dependency_links.txt +0 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/requires.txt +0 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/top_level.txt +0 -0
- {alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.2.5'
|
{alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002/models.py
RENAMED
|
@@ -4226,6 +4226,7 @@ class GetLoginTokenResponseBody(TeaModel):
|
|
|
4226
4226
|
label: str = None,
|
|
4227
4227
|
login_token: str = None,
|
|
4228
4228
|
next_stage: str = None,
|
|
4229
|
+
nick_name: str = None,
|
|
4229
4230
|
password_strategy: GetLoginTokenResponseBodyPasswordStrategy = None,
|
|
4230
4231
|
phone: str = None,
|
|
4231
4232
|
props: Dict[str, str] = None,
|
|
@@ -4257,6 +4258,7 @@ class GetLoginTokenResponseBody(TeaModel):
|
|
|
4257
4258
|
#
|
|
4258
4259
|
# > For more information about the authentication stages, see the `CurrentStage` parameter.
|
|
4259
4260
|
self.next_stage = next_stage
|
|
4261
|
+
self.nick_name = nick_name
|
|
4260
4262
|
# > This is a parameter only for internal use.
|
|
4261
4263
|
self.password_strategy = password_strategy
|
|
4262
4264
|
# Enter the mobile number of the convenience user. For an AD user, null is returned.
|
|
@@ -4312,6 +4314,8 @@ class GetLoginTokenResponseBody(TeaModel):
|
|
|
4312
4314
|
result['LoginToken'] = self.login_token
|
|
4313
4315
|
if self.next_stage is not None:
|
|
4314
4316
|
result['NextStage'] = self.next_stage
|
|
4317
|
+
if self.nick_name is not None:
|
|
4318
|
+
result['NickName'] = self.nick_name
|
|
4315
4319
|
if self.password_strategy is not None:
|
|
4316
4320
|
result['PasswordStrategy'] = self.password_strategy.to_map()
|
|
4317
4321
|
if self.phone is not None:
|
|
@@ -4352,6 +4356,8 @@ class GetLoginTokenResponseBody(TeaModel):
|
|
|
4352
4356
|
self.login_token = m.get('LoginToken')
|
|
4353
4357
|
if m.get('NextStage') is not None:
|
|
4354
4358
|
self.next_stage = m.get('NextStage')
|
|
4359
|
+
if m.get('NickName') is not None:
|
|
4360
|
+
self.nick_name = m.get('NickName')
|
|
4355
4361
|
if m.get('PasswordStrategy') is not None:
|
|
4356
4362
|
temp_model = GetLoginTokenResponseBodyPasswordStrategy()
|
|
4357
4363
|
self.password_strategy = temp_model.from_map(m['PasswordStrategy'])
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.2.4'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{alibabacloud_ecd20201002-1.2.4 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|