alibabacloud-eiam20211201 2.5.1__py3-none-any.whl → 2.6.0__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/client.py +104 -0
- alibabacloud_eiam20211201/models.py +172 -0
- {alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.6.0.dist-info}/METADATA +1 -1
- alibabacloud_eiam20211201-2.6.0.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.6.0.dist-info}/LICENSE +0 -0
- {alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.6.0.dist-info}/WHEEL +0 -0
- {alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.6.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.
|
|
1
|
+
__version__ = '2.6.0'
|
|
@@ -19339,6 +19339,110 @@ class Client(OpenApiClient):
|
|
|
19339
19339
|
runtime = util_models.RuntimeOptions()
|
|
19340
19340
|
return await self.update_application_info_with_options_async(request, runtime)
|
|
19341
19341
|
|
|
19342
|
+
def update_application_sso_form_params_with_options(
|
|
19343
|
+
self,
|
|
19344
|
+
request: eiam_20211201_models.UpdateApplicationSsoFormParamsRequest,
|
|
19345
|
+
runtime: util_models.RuntimeOptions,
|
|
19346
|
+
) -> eiam_20211201_models.UpdateApplicationSsoFormParamsResponse:
|
|
19347
|
+
"""
|
|
19348
|
+
@summary 更新模板应用的SSO参数
|
|
19349
|
+
|
|
19350
|
+
@param request: UpdateApplicationSsoFormParamsRequest
|
|
19351
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
19352
|
+
@return: UpdateApplicationSsoFormParamsResponse
|
|
19353
|
+
"""
|
|
19354
|
+
UtilClient.validate_model(request)
|
|
19355
|
+
query = {}
|
|
19356
|
+
if not UtilClient.is_unset(request.application_id):
|
|
19357
|
+
query['ApplicationId'] = request.application_id
|
|
19358
|
+
if not UtilClient.is_unset(request.application_template_params):
|
|
19359
|
+
query['ApplicationTemplateParams'] = request.application_template_params
|
|
19360
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
19361
|
+
query['InstanceId'] = request.instance_id
|
|
19362
|
+
req = open_api_models.OpenApiRequest(
|
|
19363
|
+
query=OpenApiUtilClient.query(query)
|
|
19364
|
+
)
|
|
19365
|
+
params = open_api_models.Params(
|
|
19366
|
+
action='UpdateApplicationSsoFormParams',
|
|
19367
|
+
version='2021-12-01',
|
|
19368
|
+
protocol='HTTPS',
|
|
19369
|
+
pathname='/',
|
|
19370
|
+
method='POST',
|
|
19371
|
+
auth_type='AK',
|
|
19372
|
+
style='RPC',
|
|
19373
|
+
req_body_type='formData',
|
|
19374
|
+
body_type='json'
|
|
19375
|
+
)
|
|
19376
|
+
return TeaCore.from_map(
|
|
19377
|
+
eiam_20211201_models.UpdateApplicationSsoFormParamsResponse(),
|
|
19378
|
+
self.call_api(params, req, runtime)
|
|
19379
|
+
)
|
|
19380
|
+
|
|
19381
|
+
async def update_application_sso_form_params_with_options_async(
|
|
19382
|
+
self,
|
|
19383
|
+
request: eiam_20211201_models.UpdateApplicationSsoFormParamsRequest,
|
|
19384
|
+
runtime: util_models.RuntimeOptions,
|
|
19385
|
+
) -> eiam_20211201_models.UpdateApplicationSsoFormParamsResponse:
|
|
19386
|
+
"""
|
|
19387
|
+
@summary 更新模板应用的SSO参数
|
|
19388
|
+
|
|
19389
|
+
@param request: UpdateApplicationSsoFormParamsRequest
|
|
19390
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
19391
|
+
@return: UpdateApplicationSsoFormParamsResponse
|
|
19392
|
+
"""
|
|
19393
|
+
UtilClient.validate_model(request)
|
|
19394
|
+
query = {}
|
|
19395
|
+
if not UtilClient.is_unset(request.application_id):
|
|
19396
|
+
query['ApplicationId'] = request.application_id
|
|
19397
|
+
if not UtilClient.is_unset(request.application_template_params):
|
|
19398
|
+
query['ApplicationTemplateParams'] = request.application_template_params
|
|
19399
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
19400
|
+
query['InstanceId'] = request.instance_id
|
|
19401
|
+
req = open_api_models.OpenApiRequest(
|
|
19402
|
+
query=OpenApiUtilClient.query(query)
|
|
19403
|
+
)
|
|
19404
|
+
params = open_api_models.Params(
|
|
19405
|
+
action='UpdateApplicationSsoFormParams',
|
|
19406
|
+
version='2021-12-01',
|
|
19407
|
+
protocol='HTTPS',
|
|
19408
|
+
pathname='/',
|
|
19409
|
+
method='POST',
|
|
19410
|
+
auth_type='AK',
|
|
19411
|
+
style='RPC',
|
|
19412
|
+
req_body_type='formData',
|
|
19413
|
+
body_type='json'
|
|
19414
|
+
)
|
|
19415
|
+
return TeaCore.from_map(
|
|
19416
|
+
eiam_20211201_models.UpdateApplicationSsoFormParamsResponse(),
|
|
19417
|
+
await self.call_api_async(params, req, runtime)
|
|
19418
|
+
)
|
|
19419
|
+
|
|
19420
|
+
def update_application_sso_form_params(
|
|
19421
|
+
self,
|
|
19422
|
+
request: eiam_20211201_models.UpdateApplicationSsoFormParamsRequest,
|
|
19423
|
+
) -> eiam_20211201_models.UpdateApplicationSsoFormParamsResponse:
|
|
19424
|
+
"""
|
|
19425
|
+
@summary 更新模板应用的SSO参数
|
|
19426
|
+
|
|
19427
|
+
@param request: UpdateApplicationSsoFormParamsRequest
|
|
19428
|
+
@return: UpdateApplicationSsoFormParamsResponse
|
|
19429
|
+
"""
|
|
19430
|
+
runtime = util_models.RuntimeOptions()
|
|
19431
|
+
return self.update_application_sso_form_params_with_options(request, runtime)
|
|
19432
|
+
|
|
19433
|
+
async def update_application_sso_form_params_async(
|
|
19434
|
+
self,
|
|
19435
|
+
request: eiam_20211201_models.UpdateApplicationSsoFormParamsRequest,
|
|
19436
|
+
) -> eiam_20211201_models.UpdateApplicationSsoFormParamsResponse:
|
|
19437
|
+
"""
|
|
19438
|
+
@summary 更新模板应用的SSO参数
|
|
19439
|
+
|
|
19440
|
+
@param request: UpdateApplicationSsoFormParamsRequest
|
|
19441
|
+
@return: UpdateApplicationSsoFormParamsResponse
|
|
19442
|
+
"""
|
|
19443
|
+
runtime = util_models.RuntimeOptions()
|
|
19444
|
+
return await self.update_application_sso_form_params_with_options_async(request, runtime)
|
|
19445
|
+
|
|
19342
19446
|
def update_application_token_expiration_time_with_options(
|
|
19343
19447
|
self,
|
|
19344
19448
|
request: eiam_20211201_models.UpdateApplicationTokenExpirationTimeRequest,
|
|
@@ -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:
|
|
@@ -39405,6 +39412,165 @@ class UpdateApplicationInfoResponse(TeaModel):
|
|
|
39405
39412
|
return self
|
|
39406
39413
|
|
|
39407
39414
|
|
|
39415
|
+
class UpdateApplicationSsoFormParamsRequestApplicationTemplateParams(TeaModel):
|
|
39416
|
+
def __init__(
|
|
39417
|
+
self,
|
|
39418
|
+
template_param_name: str = None,
|
|
39419
|
+
template_param_value: str = None,
|
|
39420
|
+
):
|
|
39421
|
+
# 应用模板创建参数具体名称
|
|
39422
|
+
self.template_param_name = template_param_name
|
|
39423
|
+
# 应用模板创建参数真实的取值
|
|
39424
|
+
self.template_param_value = template_param_value
|
|
39425
|
+
|
|
39426
|
+
def validate(self):
|
|
39427
|
+
pass
|
|
39428
|
+
|
|
39429
|
+
def to_map(self):
|
|
39430
|
+
_map = super().to_map()
|
|
39431
|
+
if _map is not None:
|
|
39432
|
+
return _map
|
|
39433
|
+
|
|
39434
|
+
result = dict()
|
|
39435
|
+
if self.template_param_name is not None:
|
|
39436
|
+
result['TemplateParamName'] = self.template_param_name
|
|
39437
|
+
if self.template_param_value is not None:
|
|
39438
|
+
result['TemplateParamValue'] = self.template_param_value
|
|
39439
|
+
return result
|
|
39440
|
+
|
|
39441
|
+
def from_map(self, m: dict = None):
|
|
39442
|
+
m = m or dict()
|
|
39443
|
+
if m.get('TemplateParamName') is not None:
|
|
39444
|
+
self.template_param_name = m.get('TemplateParamName')
|
|
39445
|
+
if m.get('TemplateParamValue') is not None:
|
|
39446
|
+
self.template_param_value = m.get('TemplateParamValue')
|
|
39447
|
+
return self
|
|
39448
|
+
|
|
39449
|
+
|
|
39450
|
+
class UpdateApplicationSsoFormParamsRequest(TeaModel):
|
|
39451
|
+
def __init__(
|
|
39452
|
+
self,
|
|
39453
|
+
application_id: str = None,
|
|
39454
|
+
application_template_params: List[UpdateApplicationSsoFormParamsRequestApplicationTemplateParams] = None,
|
|
39455
|
+
instance_id: str = None,
|
|
39456
|
+
):
|
|
39457
|
+
# IDaaS的应用主键id
|
|
39458
|
+
#
|
|
39459
|
+
# This parameter is required.
|
|
39460
|
+
self.application_id = application_id
|
|
39461
|
+
# 应用模板创建参数,应用创建来源为模板时才可以指定
|
|
39462
|
+
#
|
|
39463
|
+
# This parameter is required.
|
|
39464
|
+
self.application_template_params = application_template_params
|
|
39465
|
+
# IDaaS EIAM的实例id
|
|
39466
|
+
#
|
|
39467
|
+
# This parameter is required.
|
|
39468
|
+
self.instance_id = instance_id
|
|
39469
|
+
|
|
39470
|
+
def validate(self):
|
|
39471
|
+
if self.application_template_params:
|
|
39472
|
+
for k in self.application_template_params:
|
|
39473
|
+
if k:
|
|
39474
|
+
k.validate()
|
|
39475
|
+
|
|
39476
|
+
def to_map(self):
|
|
39477
|
+
_map = super().to_map()
|
|
39478
|
+
if _map is not None:
|
|
39479
|
+
return _map
|
|
39480
|
+
|
|
39481
|
+
result = dict()
|
|
39482
|
+
if self.application_id is not None:
|
|
39483
|
+
result['ApplicationId'] = self.application_id
|
|
39484
|
+
result['ApplicationTemplateParams'] = []
|
|
39485
|
+
if self.application_template_params is not None:
|
|
39486
|
+
for k in self.application_template_params:
|
|
39487
|
+
result['ApplicationTemplateParams'].append(k.to_map() if k else None)
|
|
39488
|
+
if self.instance_id is not None:
|
|
39489
|
+
result['InstanceId'] = self.instance_id
|
|
39490
|
+
return result
|
|
39491
|
+
|
|
39492
|
+
def from_map(self, m: dict = None):
|
|
39493
|
+
m = m or dict()
|
|
39494
|
+
if m.get('ApplicationId') is not None:
|
|
39495
|
+
self.application_id = m.get('ApplicationId')
|
|
39496
|
+
self.application_template_params = []
|
|
39497
|
+
if m.get('ApplicationTemplateParams') is not None:
|
|
39498
|
+
for k in m.get('ApplicationTemplateParams'):
|
|
39499
|
+
temp_model = UpdateApplicationSsoFormParamsRequestApplicationTemplateParams()
|
|
39500
|
+
self.application_template_params.append(temp_model.from_map(k))
|
|
39501
|
+
if m.get('InstanceId') is not None:
|
|
39502
|
+
self.instance_id = m.get('InstanceId')
|
|
39503
|
+
return self
|
|
39504
|
+
|
|
39505
|
+
|
|
39506
|
+
class UpdateApplicationSsoFormParamsResponseBody(TeaModel):
|
|
39507
|
+
def __init__(
|
|
39508
|
+
self,
|
|
39509
|
+
request_id: str = None,
|
|
39510
|
+
):
|
|
39511
|
+
self.request_id = request_id
|
|
39512
|
+
|
|
39513
|
+
def validate(self):
|
|
39514
|
+
pass
|
|
39515
|
+
|
|
39516
|
+
def to_map(self):
|
|
39517
|
+
_map = super().to_map()
|
|
39518
|
+
if _map is not None:
|
|
39519
|
+
return _map
|
|
39520
|
+
|
|
39521
|
+
result = dict()
|
|
39522
|
+
if self.request_id is not None:
|
|
39523
|
+
result['RequestId'] = self.request_id
|
|
39524
|
+
return result
|
|
39525
|
+
|
|
39526
|
+
def from_map(self, m: dict = None):
|
|
39527
|
+
m = m or dict()
|
|
39528
|
+
if m.get('RequestId') is not None:
|
|
39529
|
+
self.request_id = m.get('RequestId')
|
|
39530
|
+
return self
|
|
39531
|
+
|
|
39532
|
+
|
|
39533
|
+
class UpdateApplicationSsoFormParamsResponse(TeaModel):
|
|
39534
|
+
def __init__(
|
|
39535
|
+
self,
|
|
39536
|
+
headers: Dict[str, str] = None,
|
|
39537
|
+
status_code: int = None,
|
|
39538
|
+
body: UpdateApplicationSsoFormParamsResponseBody = None,
|
|
39539
|
+
):
|
|
39540
|
+
self.headers = headers
|
|
39541
|
+
self.status_code = status_code
|
|
39542
|
+
self.body = body
|
|
39543
|
+
|
|
39544
|
+
def validate(self):
|
|
39545
|
+
if self.body:
|
|
39546
|
+
self.body.validate()
|
|
39547
|
+
|
|
39548
|
+
def to_map(self):
|
|
39549
|
+
_map = super().to_map()
|
|
39550
|
+
if _map is not None:
|
|
39551
|
+
return _map
|
|
39552
|
+
|
|
39553
|
+
result = dict()
|
|
39554
|
+
if self.headers is not None:
|
|
39555
|
+
result['headers'] = self.headers
|
|
39556
|
+
if self.status_code is not None:
|
|
39557
|
+
result['statusCode'] = self.status_code
|
|
39558
|
+
if self.body is not None:
|
|
39559
|
+
result['body'] = self.body.to_map()
|
|
39560
|
+
return result
|
|
39561
|
+
|
|
39562
|
+
def from_map(self, m: dict = None):
|
|
39563
|
+
m = m or dict()
|
|
39564
|
+
if m.get('headers') is not None:
|
|
39565
|
+
self.headers = m.get('headers')
|
|
39566
|
+
if m.get('statusCode') is not None:
|
|
39567
|
+
self.status_code = m.get('statusCode')
|
|
39568
|
+
if m.get('body') is not None:
|
|
39569
|
+
temp_model = UpdateApplicationSsoFormParamsResponseBody()
|
|
39570
|
+
self.body = temp_model.from_map(m['body'])
|
|
39571
|
+
return self
|
|
39572
|
+
|
|
39573
|
+
|
|
39408
39574
|
class UpdateApplicationTokenExpirationTimeRequest(TeaModel):
|
|
39409
39575
|
def __init__(
|
|
39410
39576
|
self,
|
|
@@ -41360,6 +41526,7 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
41360
41526
|
self,
|
|
41361
41527
|
app_key: str = None,
|
|
41362
41528
|
app_secret: str = None,
|
|
41529
|
+
dingtalk_login_version: str = None,
|
|
41363
41530
|
encrypt_key: str = None,
|
|
41364
41531
|
verification_token: str = None,
|
|
41365
41532
|
):
|
|
@@ -41367,6 +41534,7 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
41367
41534
|
self.app_key = app_key
|
|
41368
41535
|
# 钉钉一方应用的AppSecret
|
|
41369
41536
|
self.app_secret = app_secret
|
|
41537
|
+
self.dingtalk_login_version = dingtalk_login_version
|
|
41370
41538
|
self.encrypt_key = encrypt_key
|
|
41371
41539
|
self.verification_token = verification_token
|
|
41372
41540
|
|
|
@@ -41383,6 +41551,8 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
41383
41551
|
result['AppKey'] = self.app_key
|
|
41384
41552
|
if self.app_secret is not None:
|
|
41385
41553
|
result['AppSecret'] = self.app_secret
|
|
41554
|
+
if self.dingtalk_login_version is not None:
|
|
41555
|
+
result['DingtalkLoginVersion'] = self.dingtalk_login_version
|
|
41386
41556
|
if self.encrypt_key is not None:
|
|
41387
41557
|
result['EncryptKey'] = self.encrypt_key
|
|
41388
41558
|
if self.verification_token is not None:
|
|
@@ -41395,6 +41565,8 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
41395
41565
|
self.app_key = m.get('AppKey')
|
|
41396
41566
|
if m.get('AppSecret') is not None:
|
|
41397
41567
|
self.app_secret = m.get('AppSecret')
|
|
41568
|
+
if m.get('DingtalkLoginVersion') is not None:
|
|
41569
|
+
self.dingtalk_login_version = m.get('DingtalkLoginVersion')
|
|
41398
41570
|
if m.get('EncryptKey') is not None:
|
|
41399
41571
|
self.encrypt_key = m.get('EncryptKey')
|
|
41400
41572
|
if m.get('VerificationToken') is not None:
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_eiam20211201/__init__.py,sha256=p2NjwW8_RHPuns-Z5Tmb9wei26Z7xZFZ8_wePBFgvc0,21
|
|
2
|
+
alibabacloud_eiam20211201/client.py,sha256=yG3QKnC9DEfquF-PF-PZJbmF9GKoEGdFwp3xOLUuD3c,935428
|
|
3
|
+
alibabacloud_eiam20211201/models.py,sha256=kpvd9HhxCBBZb26NwvbGmAVLJqwtUssK2C5Y4wbLGRQ,1519179
|
|
4
|
+
alibabacloud_eiam20211201-2.6.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_eiam20211201-2.6.0.dist-info/METADATA,sha256=eY0YhhiTm9U_yqzQQXHtewmxDHCCAdq_TYVwV3ce-K4,2319
|
|
6
|
+
alibabacloud_eiam20211201-2.6.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_eiam20211201-2.6.0.dist-info/top_level.txt,sha256=xKHBhu7RrmpWSYLSKKu2KBqRNZs1NsYQJN3isv5EYHU,26
|
|
8
|
+
alibabacloud_eiam20211201-2.6.0.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.6.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_eiam20211201-2.5.1.dist-info → alibabacloud_eiam20211201-2.6.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|