alibabacloud-eiam20211201 2.5.2__tar.gz → 2.6.0__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.
Files changed (17) hide show
  1. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/ChangeLog.md +5 -0
  2. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/PKG-INFO +1 -1
  3. alibabacloud_eiam20211201-2.6.0/alibabacloud_eiam20211201/__init__.py +1 -0
  4. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/alibabacloud_eiam20211201/client.py +104 -0
  5. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/alibabacloud_eiam20211201/models.py +159 -0
  6. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/alibabacloud_eiam20211201.egg-info/PKG-INFO +1 -1
  7. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/setup.py +1 -1
  8. alibabacloud_eiam20211201-2.5.2/alibabacloud_eiam20211201/__init__.py +0 -1
  9. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/LICENSE +0 -0
  10. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/MANIFEST.in +0 -0
  11. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/README-CN.md +0 -0
  12. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/README.md +0 -0
  13. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/alibabacloud_eiam20211201.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/alibabacloud_eiam20211201.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/alibabacloud_eiam20211201.egg-info/requires.txt +0 -0
  16. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/alibabacloud_eiam20211201.egg-info/top_level.txt +0 -0
  17. {alibabacloud_eiam20211201-2.5.2 → alibabacloud_eiam20211201-2.6.0}/setup.cfg +0 -0
@@ -1,3 +1,8 @@
1
+ 2025-12-05 Version: 2.5.2
2
+ - Update API GetIdentityProvider: add response parameters Body.IdentityProviderDetail.DingtalkAppConfig.DingtalkLoginVersion.
3
+ - Update API UpdateIdentityProvider: add request parameters DingtalkAppConfig.DingtalkLoginVersion.
4
+
5
+
1
6
  2025-11-13 Version: 2.5.1
2
7
  - Update API CreateIdentityProvider: add request parameters LdapConfig.OrganizationalUnitRdn.
3
8
  - Update API CreateIdentityProvider: add request parameters LdapConfig.PasswordSyncStatus.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_eiam20211201
3
- Version: 2.5.2
3
+ Version: 2.6.0
4
4
  Summary: Alibaba Cloud Eiam (20211201) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -0,0 +1 @@
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,
@@ -39412,6 +39412,165 @@ class UpdateApplicationInfoResponse(TeaModel):
39412
39412
  return self
39413
39413
 
39414
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
+
39415
39574
  class UpdateApplicationTokenExpirationTimeRequest(TeaModel):
39416
39575
  def __init__(
39417
39576
  self,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-eiam20211201
3
- Version: 2.5.2
3
+ Version: 2.6.0
4
4
  Summary: Alibaba Cloud Eiam (20211201) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_eiam20211201.
26
26
 
27
- Created on 04/12/2025
27
+ Created on 09/12/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '2.5.2'