alibabacloud-eiam20211201 2.5.1__py3-none-any.whl → 2.5.2__py3-none-any.whl
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_eiam20211201/__init__.py +1 -1
- alibabacloud_eiam20211201/models.py +13 -0
- {alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.5.2.dist-info}/METADATA +1 -1
- alibabacloud_eiam20211201-2.5.2.dist-info/RECORD +8 -0
- alibabacloud_eiam20211201-2.5.1.dist-info/RECORD +0 -8
- {alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.5.2.dist-info}/LICENSE +0 -0
- {alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.5.2.dist-info}/WHEEL +0 -0
- {alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.5.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.5.
|
|
1
|
+
__version__ = '2.5.2'
|
|
@@ -15409,6 +15409,7 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkAppConfig(Tea
|
|
|
15409
15409
|
app_key: str = None,
|
|
15410
15410
|
app_secret: str = None,
|
|
15411
15411
|
corp_id: str = None,
|
|
15412
|
+
dingtalk_login_version: str = None,
|
|
15412
15413
|
dingtalk_version: str = None,
|
|
15413
15414
|
encrypt_key: str = None,
|
|
15414
15415
|
verification_token: str = None,
|
|
@@ -15419,6 +15420,8 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkAppConfig(Tea
|
|
|
15419
15420
|
self.app_secret = app_secret
|
|
15420
15421
|
# DingTalk corpId.
|
|
15421
15422
|
self.corp_id = corp_id
|
|
15423
|
+
# IDaaS EIAM 钉钉扫码登录版本
|
|
15424
|
+
self.dingtalk_login_version = dingtalk_login_version
|
|
15422
15425
|
# DingTalk Version.
|
|
15423
15426
|
self.dingtalk_version = dingtalk_version
|
|
15424
15427
|
# DingTalk encrypt key.
|
|
@@ -15441,6 +15444,8 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkAppConfig(Tea
|
|
|
15441
15444
|
result['AppSecret'] = self.app_secret
|
|
15442
15445
|
if self.corp_id is not None:
|
|
15443
15446
|
result['CorpId'] = self.corp_id
|
|
15447
|
+
if self.dingtalk_login_version is not None:
|
|
15448
|
+
result['DingtalkLoginVersion'] = self.dingtalk_login_version
|
|
15444
15449
|
if self.dingtalk_version is not None:
|
|
15445
15450
|
result['DingtalkVersion'] = self.dingtalk_version
|
|
15446
15451
|
if self.encrypt_key is not None:
|
|
@@ -15457,6 +15462,8 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkAppConfig(Tea
|
|
|
15457
15462
|
self.app_secret = m.get('AppSecret')
|
|
15458
15463
|
if m.get('CorpId') is not None:
|
|
15459
15464
|
self.corp_id = m.get('CorpId')
|
|
15465
|
+
if m.get('DingtalkLoginVersion') is not None:
|
|
15466
|
+
self.dingtalk_login_version = m.get('DingtalkLoginVersion')
|
|
15460
15467
|
if m.get('DingtalkVersion') is not None:
|
|
15461
15468
|
self.dingtalk_version = m.get('DingtalkVersion')
|
|
15462
15469
|
if m.get('EncryptKey') is not None:
|
|
@@ -41360,6 +41367,7 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
41360
41367
|
self,
|
|
41361
41368
|
app_key: str = None,
|
|
41362
41369
|
app_secret: str = None,
|
|
41370
|
+
dingtalk_login_version: str = None,
|
|
41363
41371
|
encrypt_key: str = None,
|
|
41364
41372
|
verification_token: str = None,
|
|
41365
41373
|
):
|
|
@@ -41367,6 +41375,7 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
41367
41375
|
self.app_key = app_key
|
|
41368
41376
|
# 钉钉一方应用的AppSecret
|
|
41369
41377
|
self.app_secret = app_secret
|
|
41378
|
+
self.dingtalk_login_version = dingtalk_login_version
|
|
41370
41379
|
self.encrypt_key = encrypt_key
|
|
41371
41380
|
self.verification_token = verification_token
|
|
41372
41381
|
|
|
@@ -41383,6 +41392,8 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
41383
41392
|
result['AppKey'] = self.app_key
|
|
41384
41393
|
if self.app_secret is not None:
|
|
41385
41394
|
result['AppSecret'] = self.app_secret
|
|
41395
|
+
if self.dingtalk_login_version is not None:
|
|
41396
|
+
result['DingtalkLoginVersion'] = self.dingtalk_login_version
|
|
41386
41397
|
if self.encrypt_key is not None:
|
|
41387
41398
|
result['EncryptKey'] = self.encrypt_key
|
|
41388
41399
|
if self.verification_token is not None:
|
|
@@ -41395,6 +41406,8 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
41395
41406
|
self.app_key = m.get('AppKey')
|
|
41396
41407
|
if m.get('AppSecret') is not None:
|
|
41397
41408
|
self.app_secret = m.get('AppSecret')
|
|
41409
|
+
if m.get('DingtalkLoginVersion') is not None:
|
|
41410
|
+
self.dingtalk_login_version = m.get('DingtalkLoginVersion')
|
|
41398
41411
|
if m.get('EncryptKey') is not None:
|
|
41399
41412
|
self.encrypt_key = m.get('EncryptKey')
|
|
41400
41413
|
if m.get('VerificationToken') is not None:
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_eiam20211201/__init__.py,sha256=4E7gOxOjnqCxfJzvMt-RNs68gXkCwHR6V5OlB4MxaEQ,21
|
|
2
|
+
alibabacloud_eiam20211201/client.py,sha256=mVTApwpNHXTESrPYqKm1PSkmf4GmuyHrknlaf72M6O8,931108
|
|
3
|
+
alibabacloud_eiam20211201/models.py,sha256=YLeHh6RF5oKVQhoUUxSqJ6XvyxW4656Yb1dwCiwId2M,1514010
|
|
4
|
+
alibabacloud_eiam20211201-2.5.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_eiam20211201-2.5.2.dist-info/METADATA,sha256=ceNURLx6RmOxJ75dS6PFfSHNHPEXI_sRyifsSWvkwt0,2319
|
|
6
|
+
alibabacloud_eiam20211201-2.5.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_eiam20211201-2.5.2.dist-info/top_level.txt,sha256=xKHBhu7RrmpWSYLSKKu2KBqRNZs1NsYQJN3isv5EYHU,26
|
|
8
|
+
alibabacloud_eiam20211201-2.5.2.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_eiam20211201/__init__.py,sha256=AiUVBfkzDXY0BMKEL9cE-px4mzluAXEIiP2UOX6irQI,21
|
|
2
|
-
alibabacloud_eiam20211201/client.py,sha256=mVTApwpNHXTESrPYqKm1PSkmf4GmuyHrknlaf72M6O8,931108
|
|
3
|
-
alibabacloud_eiam20211201/models.py,sha256=HhFK3x2v3FLe-Pg9nAIHJLT2p2Z6PeQNHCtN7kQAiG0,1513252
|
|
4
|
-
alibabacloud_eiam20211201-2.5.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_eiam20211201-2.5.1.dist-info/METADATA,sha256=tw7W9OLIga19ryvR4uFzXhIx72cfG_ueFOb8rOzjMvE,2319
|
|
6
|
-
alibabacloud_eiam20211201-2.5.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_eiam20211201-2.5.1.dist-info/top_level.txt,sha256=xKHBhu7RrmpWSYLSKKu2KBqRNZs1NsYQJN3isv5EYHU,26
|
|
8
|
-
alibabacloud_eiam20211201-2.5.1.dist-info/RECORD,,
|
{alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.5.2.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.5.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|