alibabacloud-eiam20211201 2.5.2__py3-none-any.whl → 2.6.1__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 +183 -0
- {alibabacloud_eiam20211201-2.5.2.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/METADATA +1 -1
- alibabacloud_eiam20211201-2.6.1.dist-info/RECORD +8 -0
- alibabacloud_eiam20211201-2.5.2.dist-info/RECORD +0 -8
- {alibabacloud_eiam20211201-2.5.2.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/LICENSE +0 -0
- {alibabacloud_eiam20211201-2.5.2.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/WHEEL +0 -0
- {alibabacloud_eiam20211201-2.5.2.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.
|
|
1
|
+
__version__ = '2.6.1'
|
|
@@ -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,
|
|
@@ -16979,6 +16979,8 @@ class GetInstanceResponseBodyInstance(TeaModel):
|
|
|
16979
16979
|
domain_config: GetInstanceResponseBodyInstanceDomainConfig = None,
|
|
16980
16980
|
egress_addresses: List[str] = None,
|
|
16981
16981
|
instance_id: str = None,
|
|
16982
|
+
managed_service_code: str = None,
|
|
16983
|
+
service_managed: bool = None,
|
|
16982
16984
|
status: str = None,
|
|
16983
16985
|
):
|
|
16984
16986
|
# The time when the instance was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
@@ -16993,6 +16995,8 @@ class GetInstanceResponseBodyInstance(TeaModel):
|
|
|
16993
16995
|
self.egress_addresses = egress_addresses
|
|
16994
16996
|
# The instance ID.
|
|
16995
16997
|
self.instance_id = instance_id
|
|
16998
|
+
self.managed_service_code = managed_service_code
|
|
16999
|
+
self.service_managed = service_managed
|
|
16996
17000
|
# The status of the instance. Valid values:
|
|
16997
17001
|
#
|
|
16998
17002
|
# * creating
|
|
@@ -17023,6 +17027,10 @@ class GetInstanceResponseBodyInstance(TeaModel):
|
|
|
17023
17027
|
result['EgressAddresses'] = self.egress_addresses
|
|
17024
17028
|
if self.instance_id is not None:
|
|
17025
17029
|
result['InstanceId'] = self.instance_id
|
|
17030
|
+
if self.managed_service_code is not None:
|
|
17031
|
+
result['ManagedServiceCode'] = self.managed_service_code
|
|
17032
|
+
if self.service_managed is not None:
|
|
17033
|
+
result['ServiceManaged'] = self.service_managed
|
|
17026
17034
|
if self.status is not None:
|
|
17027
17035
|
result['Status'] = self.status
|
|
17028
17036
|
return result
|
|
@@ -17043,6 +17051,10 @@ class GetInstanceResponseBodyInstance(TeaModel):
|
|
|
17043
17051
|
self.egress_addresses = m.get('EgressAddresses')
|
|
17044
17052
|
if m.get('InstanceId') is not None:
|
|
17045
17053
|
self.instance_id = m.get('InstanceId')
|
|
17054
|
+
if m.get('ManagedServiceCode') is not None:
|
|
17055
|
+
self.managed_service_code = m.get('ManagedServiceCode')
|
|
17056
|
+
if m.get('ServiceManaged') is not None:
|
|
17057
|
+
self.service_managed = m.get('ServiceManaged')
|
|
17046
17058
|
if m.get('Status') is not None:
|
|
17047
17059
|
self.status = m.get('Status')
|
|
17048
17060
|
return self
|
|
@@ -29377,6 +29389,8 @@ class ListInstancesResponseBodyInstances(TeaModel):
|
|
|
29377
29389
|
default_endpoint: ListInstancesResponseBodyInstancesDefaultEndpoint = None,
|
|
29378
29390
|
description: str = None,
|
|
29379
29391
|
instance_id: str = None,
|
|
29392
|
+
managed_service_code: str = None,
|
|
29393
|
+
service_managed: bool = None,
|
|
29380
29394
|
status: str = None,
|
|
29381
29395
|
):
|
|
29382
29396
|
# The time when the instance was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
@@ -29387,6 +29401,8 @@ class ListInstancesResponseBodyInstances(TeaModel):
|
|
|
29387
29401
|
self.description = description
|
|
29388
29402
|
# The instance ID.
|
|
29389
29403
|
self.instance_id = instance_id
|
|
29404
|
+
self.managed_service_code = managed_service_code
|
|
29405
|
+
self.service_managed = service_managed
|
|
29390
29406
|
# The status of the instance. Valid values:
|
|
29391
29407
|
#
|
|
29392
29408
|
# * creating
|
|
@@ -29411,6 +29427,10 @@ class ListInstancesResponseBodyInstances(TeaModel):
|
|
|
29411
29427
|
result['Description'] = self.description
|
|
29412
29428
|
if self.instance_id is not None:
|
|
29413
29429
|
result['InstanceId'] = self.instance_id
|
|
29430
|
+
if self.managed_service_code is not None:
|
|
29431
|
+
result['ManagedServiceCode'] = self.managed_service_code
|
|
29432
|
+
if self.service_managed is not None:
|
|
29433
|
+
result['ServiceManaged'] = self.service_managed
|
|
29414
29434
|
if self.status is not None:
|
|
29415
29435
|
result['Status'] = self.status
|
|
29416
29436
|
return result
|
|
@@ -29426,6 +29446,10 @@ class ListInstancesResponseBodyInstances(TeaModel):
|
|
|
29426
29446
|
self.description = m.get('Description')
|
|
29427
29447
|
if m.get('InstanceId') is not None:
|
|
29428
29448
|
self.instance_id = m.get('InstanceId')
|
|
29449
|
+
if m.get('ManagedServiceCode') is not None:
|
|
29450
|
+
self.managed_service_code = m.get('ManagedServiceCode')
|
|
29451
|
+
if m.get('ServiceManaged') is not None:
|
|
29452
|
+
self.service_managed = m.get('ServiceManaged')
|
|
29429
29453
|
if m.get('Status') is not None:
|
|
29430
29454
|
self.status = m.get('Status')
|
|
29431
29455
|
return self
|
|
@@ -39412,6 +39436,165 @@ class UpdateApplicationInfoResponse(TeaModel):
|
|
|
39412
39436
|
return self
|
|
39413
39437
|
|
|
39414
39438
|
|
|
39439
|
+
class UpdateApplicationSsoFormParamsRequestApplicationTemplateParams(TeaModel):
|
|
39440
|
+
def __init__(
|
|
39441
|
+
self,
|
|
39442
|
+
template_param_name: str = None,
|
|
39443
|
+
template_param_value: str = None,
|
|
39444
|
+
):
|
|
39445
|
+
# 应用模板创建参数具体名称
|
|
39446
|
+
self.template_param_name = template_param_name
|
|
39447
|
+
# 应用模板创建参数真实的取值
|
|
39448
|
+
self.template_param_value = template_param_value
|
|
39449
|
+
|
|
39450
|
+
def validate(self):
|
|
39451
|
+
pass
|
|
39452
|
+
|
|
39453
|
+
def to_map(self):
|
|
39454
|
+
_map = super().to_map()
|
|
39455
|
+
if _map is not None:
|
|
39456
|
+
return _map
|
|
39457
|
+
|
|
39458
|
+
result = dict()
|
|
39459
|
+
if self.template_param_name is not None:
|
|
39460
|
+
result['TemplateParamName'] = self.template_param_name
|
|
39461
|
+
if self.template_param_value is not None:
|
|
39462
|
+
result['TemplateParamValue'] = self.template_param_value
|
|
39463
|
+
return result
|
|
39464
|
+
|
|
39465
|
+
def from_map(self, m: dict = None):
|
|
39466
|
+
m = m or dict()
|
|
39467
|
+
if m.get('TemplateParamName') is not None:
|
|
39468
|
+
self.template_param_name = m.get('TemplateParamName')
|
|
39469
|
+
if m.get('TemplateParamValue') is not None:
|
|
39470
|
+
self.template_param_value = m.get('TemplateParamValue')
|
|
39471
|
+
return self
|
|
39472
|
+
|
|
39473
|
+
|
|
39474
|
+
class UpdateApplicationSsoFormParamsRequest(TeaModel):
|
|
39475
|
+
def __init__(
|
|
39476
|
+
self,
|
|
39477
|
+
application_id: str = None,
|
|
39478
|
+
application_template_params: List[UpdateApplicationSsoFormParamsRequestApplicationTemplateParams] = None,
|
|
39479
|
+
instance_id: str = None,
|
|
39480
|
+
):
|
|
39481
|
+
# IDaaS的应用主键id
|
|
39482
|
+
#
|
|
39483
|
+
# This parameter is required.
|
|
39484
|
+
self.application_id = application_id
|
|
39485
|
+
# 应用模板创建参数,应用创建来源为模板时才可以指定
|
|
39486
|
+
#
|
|
39487
|
+
# This parameter is required.
|
|
39488
|
+
self.application_template_params = application_template_params
|
|
39489
|
+
# IDaaS EIAM的实例id
|
|
39490
|
+
#
|
|
39491
|
+
# This parameter is required.
|
|
39492
|
+
self.instance_id = instance_id
|
|
39493
|
+
|
|
39494
|
+
def validate(self):
|
|
39495
|
+
if self.application_template_params:
|
|
39496
|
+
for k in self.application_template_params:
|
|
39497
|
+
if k:
|
|
39498
|
+
k.validate()
|
|
39499
|
+
|
|
39500
|
+
def to_map(self):
|
|
39501
|
+
_map = super().to_map()
|
|
39502
|
+
if _map is not None:
|
|
39503
|
+
return _map
|
|
39504
|
+
|
|
39505
|
+
result = dict()
|
|
39506
|
+
if self.application_id is not None:
|
|
39507
|
+
result['ApplicationId'] = self.application_id
|
|
39508
|
+
result['ApplicationTemplateParams'] = []
|
|
39509
|
+
if self.application_template_params is not None:
|
|
39510
|
+
for k in self.application_template_params:
|
|
39511
|
+
result['ApplicationTemplateParams'].append(k.to_map() if k else None)
|
|
39512
|
+
if self.instance_id is not None:
|
|
39513
|
+
result['InstanceId'] = self.instance_id
|
|
39514
|
+
return result
|
|
39515
|
+
|
|
39516
|
+
def from_map(self, m: dict = None):
|
|
39517
|
+
m = m or dict()
|
|
39518
|
+
if m.get('ApplicationId') is not None:
|
|
39519
|
+
self.application_id = m.get('ApplicationId')
|
|
39520
|
+
self.application_template_params = []
|
|
39521
|
+
if m.get('ApplicationTemplateParams') is not None:
|
|
39522
|
+
for k in m.get('ApplicationTemplateParams'):
|
|
39523
|
+
temp_model = UpdateApplicationSsoFormParamsRequestApplicationTemplateParams()
|
|
39524
|
+
self.application_template_params.append(temp_model.from_map(k))
|
|
39525
|
+
if m.get('InstanceId') is not None:
|
|
39526
|
+
self.instance_id = m.get('InstanceId')
|
|
39527
|
+
return self
|
|
39528
|
+
|
|
39529
|
+
|
|
39530
|
+
class UpdateApplicationSsoFormParamsResponseBody(TeaModel):
|
|
39531
|
+
def __init__(
|
|
39532
|
+
self,
|
|
39533
|
+
request_id: str = None,
|
|
39534
|
+
):
|
|
39535
|
+
self.request_id = request_id
|
|
39536
|
+
|
|
39537
|
+
def validate(self):
|
|
39538
|
+
pass
|
|
39539
|
+
|
|
39540
|
+
def to_map(self):
|
|
39541
|
+
_map = super().to_map()
|
|
39542
|
+
if _map is not None:
|
|
39543
|
+
return _map
|
|
39544
|
+
|
|
39545
|
+
result = dict()
|
|
39546
|
+
if self.request_id is not None:
|
|
39547
|
+
result['RequestId'] = self.request_id
|
|
39548
|
+
return result
|
|
39549
|
+
|
|
39550
|
+
def from_map(self, m: dict = None):
|
|
39551
|
+
m = m or dict()
|
|
39552
|
+
if m.get('RequestId') is not None:
|
|
39553
|
+
self.request_id = m.get('RequestId')
|
|
39554
|
+
return self
|
|
39555
|
+
|
|
39556
|
+
|
|
39557
|
+
class UpdateApplicationSsoFormParamsResponse(TeaModel):
|
|
39558
|
+
def __init__(
|
|
39559
|
+
self,
|
|
39560
|
+
headers: Dict[str, str] = None,
|
|
39561
|
+
status_code: int = None,
|
|
39562
|
+
body: UpdateApplicationSsoFormParamsResponseBody = None,
|
|
39563
|
+
):
|
|
39564
|
+
self.headers = headers
|
|
39565
|
+
self.status_code = status_code
|
|
39566
|
+
self.body = body
|
|
39567
|
+
|
|
39568
|
+
def validate(self):
|
|
39569
|
+
if self.body:
|
|
39570
|
+
self.body.validate()
|
|
39571
|
+
|
|
39572
|
+
def to_map(self):
|
|
39573
|
+
_map = super().to_map()
|
|
39574
|
+
if _map is not None:
|
|
39575
|
+
return _map
|
|
39576
|
+
|
|
39577
|
+
result = dict()
|
|
39578
|
+
if self.headers is not None:
|
|
39579
|
+
result['headers'] = self.headers
|
|
39580
|
+
if self.status_code is not None:
|
|
39581
|
+
result['statusCode'] = self.status_code
|
|
39582
|
+
if self.body is not None:
|
|
39583
|
+
result['body'] = self.body.to_map()
|
|
39584
|
+
return result
|
|
39585
|
+
|
|
39586
|
+
def from_map(self, m: dict = None):
|
|
39587
|
+
m = m or dict()
|
|
39588
|
+
if m.get('headers') is not None:
|
|
39589
|
+
self.headers = m.get('headers')
|
|
39590
|
+
if m.get('statusCode') is not None:
|
|
39591
|
+
self.status_code = m.get('statusCode')
|
|
39592
|
+
if m.get('body') is not None:
|
|
39593
|
+
temp_model = UpdateApplicationSsoFormParamsResponseBody()
|
|
39594
|
+
self.body = temp_model.from_map(m['body'])
|
|
39595
|
+
return self
|
|
39596
|
+
|
|
39597
|
+
|
|
39415
39598
|
class UpdateApplicationTokenExpirationTimeRequest(TeaModel):
|
|
39416
39599
|
def __init__(
|
|
39417
39600
|
self,
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_eiam20211201/__init__.py,sha256=27kOhGQFq_GHJCVVHfzD1DHY7o7VYb-KeiHuCkQYWpA,21
|
|
2
|
+
alibabacloud_eiam20211201/client.py,sha256=yG3QKnC9DEfquF-PF-PZJbmF9GKoEGdFwp3xOLUuD3c,935428
|
|
3
|
+
alibabacloud_eiam20211201/models.py,sha256=5NzEXQqqYlG5o2zRRCJB9YaSvx9d_rLl2zXdYJI7-yg,1520449
|
|
4
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/METADATA,sha256=QCgTFtUG_Et0TbBsTA5Y7PVe04LpoyX3gMPWcX-dUNk,2319
|
|
6
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/top_level.txt,sha256=xKHBhu7RrmpWSYLSKKu2KBqRNZs1NsYQJN3isv5EYHU,26
|
|
8
|
+
alibabacloud_eiam20211201-2.6.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
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,,
|
{alibabacloud_eiam20211201-2.5.2.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_eiam20211201-2.5.2.dist-info → alibabacloud_eiam20211201-2.6.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|