alibabacloud-eiam20211201 2.4.0__py3-none-any.whl → 2.5.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 +336 -0
- alibabacloud_eiam20211201/models.py +503 -0
- {alibabacloud_eiam20211201-2.4.0.dist-info → alibabacloud_eiam20211201-2.5.0.dist-info}/METADATA +1 -1
- alibabacloud_eiam20211201-2.5.0.dist-info/RECORD +8 -0
- alibabacloud_eiam20211201-2.4.0.dist-info/RECORD +0 -8
- {alibabacloud_eiam20211201-2.4.0.dist-info → alibabacloud_eiam20211201-2.5.0.dist-info}/LICENSE +0 -0
- {alibabacloud_eiam20211201-2.4.0.dist-info → alibabacloud_eiam20211201-2.5.0.dist-info}/WHEEL +0 -0
- {alibabacloud_eiam20211201-2.4.0.dist-info → alibabacloud_eiam20211201-2.5.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.
|
|
1
|
+
__version__ = '2.5.0'
|
|
@@ -773,6 +773,114 @@ class Client(OpenApiClient):
|
|
|
773
773
|
runtime = util_models.RuntimeOptions()
|
|
774
774
|
return await self.authorize_application_to_users_with_options_async(request, runtime)
|
|
775
775
|
|
|
776
|
+
def bind_user_authn_source_mapping_with_options(
|
|
777
|
+
self,
|
|
778
|
+
request: eiam_20211201_models.BindUserAuthnSourceMappingRequest,
|
|
779
|
+
runtime: util_models.RuntimeOptions,
|
|
780
|
+
) -> eiam_20211201_models.BindUserAuthnSourceMappingResponse:
|
|
781
|
+
"""
|
|
782
|
+
@summary 绑定三方登录账户
|
|
783
|
+
|
|
784
|
+
@param request: BindUserAuthnSourceMappingRequest
|
|
785
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
786
|
+
@return: BindUserAuthnSourceMappingResponse
|
|
787
|
+
"""
|
|
788
|
+
UtilClient.validate_model(request)
|
|
789
|
+
query = {}
|
|
790
|
+
if not UtilClient.is_unset(request.identity_provider_id):
|
|
791
|
+
query['IdentityProviderId'] = request.identity_provider_id
|
|
792
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
793
|
+
query['InstanceId'] = request.instance_id
|
|
794
|
+
if not UtilClient.is_unset(request.user_external_id):
|
|
795
|
+
query['UserExternalId'] = request.user_external_id
|
|
796
|
+
if not UtilClient.is_unset(request.user_id):
|
|
797
|
+
query['UserId'] = request.user_id
|
|
798
|
+
req = open_api_models.OpenApiRequest(
|
|
799
|
+
query=OpenApiUtilClient.query(query)
|
|
800
|
+
)
|
|
801
|
+
params = open_api_models.Params(
|
|
802
|
+
action='BindUserAuthnSourceMapping',
|
|
803
|
+
version='2021-12-01',
|
|
804
|
+
protocol='HTTPS',
|
|
805
|
+
pathname='/',
|
|
806
|
+
method='POST',
|
|
807
|
+
auth_type='AK',
|
|
808
|
+
style='RPC',
|
|
809
|
+
req_body_type='formData',
|
|
810
|
+
body_type='json'
|
|
811
|
+
)
|
|
812
|
+
return TeaCore.from_map(
|
|
813
|
+
eiam_20211201_models.BindUserAuthnSourceMappingResponse(),
|
|
814
|
+
self.call_api(params, req, runtime)
|
|
815
|
+
)
|
|
816
|
+
|
|
817
|
+
async def bind_user_authn_source_mapping_with_options_async(
|
|
818
|
+
self,
|
|
819
|
+
request: eiam_20211201_models.BindUserAuthnSourceMappingRequest,
|
|
820
|
+
runtime: util_models.RuntimeOptions,
|
|
821
|
+
) -> eiam_20211201_models.BindUserAuthnSourceMappingResponse:
|
|
822
|
+
"""
|
|
823
|
+
@summary 绑定三方登录账户
|
|
824
|
+
|
|
825
|
+
@param request: BindUserAuthnSourceMappingRequest
|
|
826
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
827
|
+
@return: BindUserAuthnSourceMappingResponse
|
|
828
|
+
"""
|
|
829
|
+
UtilClient.validate_model(request)
|
|
830
|
+
query = {}
|
|
831
|
+
if not UtilClient.is_unset(request.identity_provider_id):
|
|
832
|
+
query['IdentityProviderId'] = request.identity_provider_id
|
|
833
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
834
|
+
query['InstanceId'] = request.instance_id
|
|
835
|
+
if not UtilClient.is_unset(request.user_external_id):
|
|
836
|
+
query['UserExternalId'] = request.user_external_id
|
|
837
|
+
if not UtilClient.is_unset(request.user_id):
|
|
838
|
+
query['UserId'] = request.user_id
|
|
839
|
+
req = open_api_models.OpenApiRequest(
|
|
840
|
+
query=OpenApiUtilClient.query(query)
|
|
841
|
+
)
|
|
842
|
+
params = open_api_models.Params(
|
|
843
|
+
action='BindUserAuthnSourceMapping',
|
|
844
|
+
version='2021-12-01',
|
|
845
|
+
protocol='HTTPS',
|
|
846
|
+
pathname='/',
|
|
847
|
+
method='POST',
|
|
848
|
+
auth_type='AK',
|
|
849
|
+
style='RPC',
|
|
850
|
+
req_body_type='formData',
|
|
851
|
+
body_type='json'
|
|
852
|
+
)
|
|
853
|
+
return TeaCore.from_map(
|
|
854
|
+
eiam_20211201_models.BindUserAuthnSourceMappingResponse(),
|
|
855
|
+
await self.call_api_async(params, req, runtime)
|
|
856
|
+
)
|
|
857
|
+
|
|
858
|
+
def bind_user_authn_source_mapping(
|
|
859
|
+
self,
|
|
860
|
+
request: eiam_20211201_models.BindUserAuthnSourceMappingRequest,
|
|
861
|
+
) -> eiam_20211201_models.BindUserAuthnSourceMappingResponse:
|
|
862
|
+
"""
|
|
863
|
+
@summary 绑定三方登录账户
|
|
864
|
+
|
|
865
|
+
@param request: BindUserAuthnSourceMappingRequest
|
|
866
|
+
@return: BindUserAuthnSourceMappingResponse
|
|
867
|
+
"""
|
|
868
|
+
runtime = util_models.RuntimeOptions()
|
|
869
|
+
return self.bind_user_authn_source_mapping_with_options(request, runtime)
|
|
870
|
+
|
|
871
|
+
async def bind_user_authn_source_mapping_async(
|
|
872
|
+
self,
|
|
873
|
+
request: eiam_20211201_models.BindUserAuthnSourceMappingRequest,
|
|
874
|
+
) -> eiam_20211201_models.BindUserAuthnSourceMappingResponse:
|
|
875
|
+
"""
|
|
876
|
+
@summary 绑定三方登录账户
|
|
877
|
+
|
|
878
|
+
@param request: BindUserAuthnSourceMappingRequest
|
|
879
|
+
@return: BindUserAuthnSourceMappingResponse
|
|
880
|
+
"""
|
|
881
|
+
runtime = util_models.RuntimeOptions()
|
|
882
|
+
return await self.bind_user_authn_source_mapping_with_options_async(request, runtime)
|
|
883
|
+
|
|
776
884
|
def create_application_with_options(
|
|
777
885
|
self,
|
|
778
886
|
request: eiam_20211201_models.CreateApplicationRequest,
|
|
@@ -15263,6 +15371,126 @@ class Client(OpenApiClient):
|
|
|
15263
15371
|
runtime = util_models.RuntimeOptions()
|
|
15264
15372
|
return await self.list_synchronization_jobs_with_options_async(request, runtime)
|
|
15265
15373
|
|
|
15374
|
+
def list_user_authn_source_mappings_with_options(
|
|
15375
|
+
self,
|
|
15376
|
+
request: eiam_20211201_models.ListUserAuthnSourceMappingsRequest,
|
|
15377
|
+
runtime: util_models.RuntimeOptions,
|
|
15378
|
+
) -> eiam_20211201_models.ListUserAuthnSourceMappingsResponse:
|
|
15379
|
+
"""
|
|
15380
|
+
@summary 查询三方登录账户绑定关系
|
|
15381
|
+
|
|
15382
|
+
@param request: ListUserAuthnSourceMappingsRequest
|
|
15383
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
15384
|
+
@return: ListUserAuthnSourceMappingsResponse
|
|
15385
|
+
"""
|
|
15386
|
+
UtilClient.validate_model(request)
|
|
15387
|
+
query = {}
|
|
15388
|
+
if not UtilClient.is_unset(request.identity_provider_id):
|
|
15389
|
+
query['IdentityProviderId'] = request.identity_provider_id
|
|
15390
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
15391
|
+
query['InstanceId'] = request.instance_id
|
|
15392
|
+
if not UtilClient.is_unset(request.max_results):
|
|
15393
|
+
query['MaxResults'] = request.max_results
|
|
15394
|
+
if not UtilClient.is_unset(request.next_token):
|
|
15395
|
+
query['NextToken'] = request.next_token
|
|
15396
|
+
if not UtilClient.is_unset(request.previous_token):
|
|
15397
|
+
query['PreviousToken'] = request.previous_token
|
|
15398
|
+
if not UtilClient.is_unset(request.user_external_id):
|
|
15399
|
+
query['UserExternalId'] = request.user_external_id
|
|
15400
|
+
if not UtilClient.is_unset(request.user_id):
|
|
15401
|
+
query['UserId'] = request.user_id
|
|
15402
|
+
req = open_api_models.OpenApiRequest(
|
|
15403
|
+
query=OpenApiUtilClient.query(query)
|
|
15404
|
+
)
|
|
15405
|
+
params = open_api_models.Params(
|
|
15406
|
+
action='ListUserAuthnSourceMappings',
|
|
15407
|
+
version='2021-12-01',
|
|
15408
|
+
protocol='HTTPS',
|
|
15409
|
+
pathname='/',
|
|
15410
|
+
method='POST',
|
|
15411
|
+
auth_type='AK',
|
|
15412
|
+
style='RPC',
|
|
15413
|
+
req_body_type='formData',
|
|
15414
|
+
body_type='json'
|
|
15415
|
+
)
|
|
15416
|
+
return TeaCore.from_map(
|
|
15417
|
+
eiam_20211201_models.ListUserAuthnSourceMappingsResponse(),
|
|
15418
|
+
self.call_api(params, req, runtime)
|
|
15419
|
+
)
|
|
15420
|
+
|
|
15421
|
+
async def list_user_authn_source_mappings_with_options_async(
|
|
15422
|
+
self,
|
|
15423
|
+
request: eiam_20211201_models.ListUserAuthnSourceMappingsRequest,
|
|
15424
|
+
runtime: util_models.RuntimeOptions,
|
|
15425
|
+
) -> eiam_20211201_models.ListUserAuthnSourceMappingsResponse:
|
|
15426
|
+
"""
|
|
15427
|
+
@summary 查询三方登录账户绑定关系
|
|
15428
|
+
|
|
15429
|
+
@param request: ListUserAuthnSourceMappingsRequest
|
|
15430
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
15431
|
+
@return: ListUserAuthnSourceMappingsResponse
|
|
15432
|
+
"""
|
|
15433
|
+
UtilClient.validate_model(request)
|
|
15434
|
+
query = {}
|
|
15435
|
+
if not UtilClient.is_unset(request.identity_provider_id):
|
|
15436
|
+
query['IdentityProviderId'] = request.identity_provider_id
|
|
15437
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
15438
|
+
query['InstanceId'] = request.instance_id
|
|
15439
|
+
if not UtilClient.is_unset(request.max_results):
|
|
15440
|
+
query['MaxResults'] = request.max_results
|
|
15441
|
+
if not UtilClient.is_unset(request.next_token):
|
|
15442
|
+
query['NextToken'] = request.next_token
|
|
15443
|
+
if not UtilClient.is_unset(request.previous_token):
|
|
15444
|
+
query['PreviousToken'] = request.previous_token
|
|
15445
|
+
if not UtilClient.is_unset(request.user_external_id):
|
|
15446
|
+
query['UserExternalId'] = request.user_external_id
|
|
15447
|
+
if not UtilClient.is_unset(request.user_id):
|
|
15448
|
+
query['UserId'] = request.user_id
|
|
15449
|
+
req = open_api_models.OpenApiRequest(
|
|
15450
|
+
query=OpenApiUtilClient.query(query)
|
|
15451
|
+
)
|
|
15452
|
+
params = open_api_models.Params(
|
|
15453
|
+
action='ListUserAuthnSourceMappings',
|
|
15454
|
+
version='2021-12-01',
|
|
15455
|
+
protocol='HTTPS',
|
|
15456
|
+
pathname='/',
|
|
15457
|
+
method='POST',
|
|
15458
|
+
auth_type='AK',
|
|
15459
|
+
style='RPC',
|
|
15460
|
+
req_body_type='formData',
|
|
15461
|
+
body_type='json'
|
|
15462
|
+
)
|
|
15463
|
+
return TeaCore.from_map(
|
|
15464
|
+
eiam_20211201_models.ListUserAuthnSourceMappingsResponse(),
|
|
15465
|
+
await self.call_api_async(params, req, runtime)
|
|
15466
|
+
)
|
|
15467
|
+
|
|
15468
|
+
def list_user_authn_source_mappings(
|
|
15469
|
+
self,
|
|
15470
|
+
request: eiam_20211201_models.ListUserAuthnSourceMappingsRequest,
|
|
15471
|
+
) -> eiam_20211201_models.ListUserAuthnSourceMappingsResponse:
|
|
15472
|
+
"""
|
|
15473
|
+
@summary 查询三方登录账户绑定关系
|
|
15474
|
+
|
|
15475
|
+
@param request: ListUserAuthnSourceMappingsRequest
|
|
15476
|
+
@return: ListUserAuthnSourceMappingsResponse
|
|
15477
|
+
"""
|
|
15478
|
+
runtime = util_models.RuntimeOptions()
|
|
15479
|
+
return self.list_user_authn_source_mappings_with_options(request, runtime)
|
|
15480
|
+
|
|
15481
|
+
async def list_user_authn_source_mappings_async(
|
|
15482
|
+
self,
|
|
15483
|
+
request: eiam_20211201_models.ListUserAuthnSourceMappingsRequest,
|
|
15484
|
+
) -> eiam_20211201_models.ListUserAuthnSourceMappingsResponse:
|
|
15485
|
+
"""
|
|
15486
|
+
@summary 查询三方登录账户绑定关系
|
|
15487
|
+
|
|
15488
|
+
@param request: ListUserAuthnSourceMappingsRequest
|
|
15489
|
+
@return: ListUserAuthnSourceMappingsResponse
|
|
15490
|
+
"""
|
|
15491
|
+
runtime = util_models.RuntimeOptions()
|
|
15492
|
+
return await self.list_user_authn_source_mappings_with_options_async(request, runtime)
|
|
15493
|
+
|
|
15266
15494
|
def list_users_with_options(
|
|
15267
15495
|
self,
|
|
15268
15496
|
request: eiam_20211201_models.ListUsersRequest,
|
|
@@ -18247,6 +18475,114 @@ class Client(OpenApiClient):
|
|
|
18247
18475
|
runtime = util_models.RuntimeOptions()
|
|
18248
18476
|
return await self.set_user_primary_organizational_unit_with_options_async(request, runtime)
|
|
18249
18477
|
|
|
18478
|
+
def unbind_user_authn_source_mapping_with_options(
|
|
18479
|
+
self,
|
|
18480
|
+
request: eiam_20211201_models.UnbindUserAuthnSourceMappingRequest,
|
|
18481
|
+
runtime: util_models.RuntimeOptions,
|
|
18482
|
+
) -> eiam_20211201_models.UnbindUserAuthnSourceMappingResponse:
|
|
18483
|
+
"""
|
|
18484
|
+
@summary 解绑三方登录账户
|
|
18485
|
+
|
|
18486
|
+
@param request: UnbindUserAuthnSourceMappingRequest
|
|
18487
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
18488
|
+
@return: UnbindUserAuthnSourceMappingResponse
|
|
18489
|
+
"""
|
|
18490
|
+
UtilClient.validate_model(request)
|
|
18491
|
+
query = {}
|
|
18492
|
+
if not UtilClient.is_unset(request.identity_provider_id):
|
|
18493
|
+
query['IdentityProviderId'] = request.identity_provider_id
|
|
18494
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
18495
|
+
query['InstanceId'] = request.instance_id
|
|
18496
|
+
if not UtilClient.is_unset(request.user_external_id):
|
|
18497
|
+
query['UserExternalId'] = request.user_external_id
|
|
18498
|
+
if not UtilClient.is_unset(request.user_id):
|
|
18499
|
+
query['UserId'] = request.user_id
|
|
18500
|
+
req = open_api_models.OpenApiRequest(
|
|
18501
|
+
query=OpenApiUtilClient.query(query)
|
|
18502
|
+
)
|
|
18503
|
+
params = open_api_models.Params(
|
|
18504
|
+
action='UnbindUserAuthnSourceMapping',
|
|
18505
|
+
version='2021-12-01',
|
|
18506
|
+
protocol='HTTPS',
|
|
18507
|
+
pathname='/',
|
|
18508
|
+
method='POST',
|
|
18509
|
+
auth_type='AK',
|
|
18510
|
+
style='RPC',
|
|
18511
|
+
req_body_type='formData',
|
|
18512
|
+
body_type='json'
|
|
18513
|
+
)
|
|
18514
|
+
return TeaCore.from_map(
|
|
18515
|
+
eiam_20211201_models.UnbindUserAuthnSourceMappingResponse(),
|
|
18516
|
+
self.call_api(params, req, runtime)
|
|
18517
|
+
)
|
|
18518
|
+
|
|
18519
|
+
async def unbind_user_authn_source_mapping_with_options_async(
|
|
18520
|
+
self,
|
|
18521
|
+
request: eiam_20211201_models.UnbindUserAuthnSourceMappingRequest,
|
|
18522
|
+
runtime: util_models.RuntimeOptions,
|
|
18523
|
+
) -> eiam_20211201_models.UnbindUserAuthnSourceMappingResponse:
|
|
18524
|
+
"""
|
|
18525
|
+
@summary 解绑三方登录账户
|
|
18526
|
+
|
|
18527
|
+
@param request: UnbindUserAuthnSourceMappingRequest
|
|
18528
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
18529
|
+
@return: UnbindUserAuthnSourceMappingResponse
|
|
18530
|
+
"""
|
|
18531
|
+
UtilClient.validate_model(request)
|
|
18532
|
+
query = {}
|
|
18533
|
+
if not UtilClient.is_unset(request.identity_provider_id):
|
|
18534
|
+
query['IdentityProviderId'] = request.identity_provider_id
|
|
18535
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
18536
|
+
query['InstanceId'] = request.instance_id
|
|
18537
|
+
if not UtilClient.is_unset(request.user_external_id):
|
|
18538
|
+
query['UserExternalId'] = request.user_external_id
|
|
18539
|
+
if not UtilClient.is_unset(request.user_id):
|
|
18540
|
+
query['UserId'] = request.user_id
|
|
18541
|
+
req = open_api_models.OpenApiRequest(
|
|
18542
|
+
query=OpenApiUtilClient.query(query)
|
|
18543
|
+
)
|
|
18544
|
+
params = open_api_models.Params(
|
|
18545
|
+
action='UnbindUserAuthnSourceMapping',
|
|
18546
|
+
version='2021-12-01',
|
|
18547
|
+
protocol='HTTPS',
|
|
18548
|
+
pathname='/',
|
|
18549
|
+
method='POST',
|
|
18550
|
+
auth_type='AK',
|
|
18551
|
+
style='RPC',
|
|
18552
|
+
req_body_type='formData',
|
|
18553
|
+
body_type='json'
|
|
18554
|
+
)
|
|
18555
|
+
return TeaCore.from_map(
|
|
18556
|
+
eiam_20211201_models.UnbindUserAuthnSourceMappingResponse(),
|
|
18557
|
+
await self.call_api_async(params, req, runtime)
|
|
18558
|
+
)
|
|
18559
|
+
|
|
18560
|
+
def unbind_user_authn_source_mapping(
|
|
18561
|
+
self,
|
|
18562
|
+
request: eiam_20211201_models.UnbindUserAuthnSourceMappingRequest,
|
|
18563
|
+
) -> eiam_20211201_models.UnbindUserAuthnSourceMappingResponse:
|
|
18564
|
+
"""
|
|
18565
|
+
@summary 解绑三方登录账户
|
|
18566
|
+
|
|
18567
|
+
@param request: UnbindUserAuthnSourceMappingRequest
|
|
18568
|
+
@return: UnbindUserAuthnSourceMappingResponse
|
|
18569
|
+
"""
|
|
18570
|
+
runtime = util_models.RuntimeOptions()
|
|
18571
|
+
return self.unbind_user_authn_source_mapping_with_options(request, runtime)
|
|
18572
|
+
|
|
18573
|
+
async def unbind_user_authn_source_mapping_async(
|
|
18574
|
+
self,
|
|
18575
|
+
request: eiam_20211201_models.UnbindUserAuthnSourceMappingRequest,
|
|
18576
|
+
) -> eiam_20211201_models.UnbindUserAuthnSourceMappingResponse:
|
|
18577
|
+
"""
|
|
18578
|
+
@summary 解绑三方登录账户
|
|
18579
|
+
|
|
18580
|
+
@param request: UnbindUserAuthnSourceMappingRequest
|
|
18581
|
+
@return: UnbindUserAuthnSourceMappingResponse
|
|
18582
|
+
"""
|
|
18583
|
+
runtime = util_models.RuntimeOptions()
|
|
18584
|
+
return await self.unbind_user_authn_source_mapping_with_options_async(request, runtime)
|
|
18585
|
+
|
|
18250
18586
|
def unlock_user_with_options(
|
|
18251
18587
|
self,
|
|
18252
18588
|
request: eiam_20211201_models.UnlockUserRequest,
|
|
@@ -836,6 +836,131 @@ class AuthorizeApplicationToUsersResponse(TeaModel):
|
|
|
836
836
|
return self
|
|
837
837
|
|
|
838
838
|
|
|
839
|
+
class BindUserAuthnSourceMappingRequest(TeaModel):
|
|
840
|
+
def __init__(
|
|
841
|
+
self,
|
|
842
|
+
identity_provider_id: str = None,
|
|
843
|
+
instance_id: str = None,
|
|
844
|
+
user_external_id: str = None,
|
|
845
|
+
user_id: str = None,
|
|
846
|
+
):
|
|
847
|
+
# 来源Idp Id
|
|
848
|
+
#
|
|
849
|
+
# This parameter is required.
|
|
850
|
+
self.identity_provider_id = identity_provider_id
|
|
851
|
+
# IDaaS EIAM实例的ID。
|
|
852
|
+
#
|
|
853
|
+
# This parameter is required.
|
|
854
|
+
self.instance_id = instance_id
|
|
855
|
+
# 外部关联ID
|
|
856
|
+
#
|
|
857
|
+
# This parameter is required.
|
|
858
|
+
self.user_external_id = user_external_id
|
|
859
|
+
# 用户ID
|
|
860
|
+
#
|
|
861
|
+
# This parameter is required.
|
|
862
|
+
self.user_id = user_id
|
|
863
|
+
|
|
864
|
+
def validate(self):
|
|
865
|
+
pass
|
|
866
|
+
|
|
867
|
+
def to_map(self):
|
|
868
|
+
_map = super().to_map()
|
|
869
|
+
if _map is not None:
|
|
870
|
+
return _map
|
|
871
|
+
|
|
872
|
+
result = dict()
|
|
873
|
+
if self.identity_provider_id is not None:
|
|
874
|
+
result['IdentityProviderId'] = self.identity_provider_id
|
|
875
|
+
if self.instance_id is not None:
|
|
876
|
+
result['InstanceId'] = self.instance_id
|
|
877
|
+
if self.user_external_id is not None:
|
|
878
|
+
result['UserExternalId'] = self.user_external_id
|
|
879
|
+
if self.user_id is not None:
|
|
880
|
+
result['UserId'] = self.user_id
|
|
881
|
+
return result
|
|
882
|
+
|
|
883
|
+
def from_map(self, m: dict = None):
|
|
884
|
+
m = m or dict()
|
|
885
|
+
if m.get('IdentityProviderId') is not None:
|
|
886
|
+
self.identity_provider_id = m.get('IdentityProviderId')
|
|
887
|
+
if m.get('InstanceId') is not None:
|
|
888
|
+
self.instance_id = m.get('InstanceId')
|
|
889
|
+
if m.get('UserExternalId') is not None:
|
|
890
|
+
self.user_external_id = m.get('UserExternalId')
|
|
891
|
+
if m.get('UserId') is not None:
|
|
892
|
+
self.user_id = m.get('UserId')
|
|
893
|
+
return self
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
class BindUserAuthnSourceMappingResponseBody(TeaModel):
|
|
897
|
+
def __init__(
|
|
898
|
+
self,
|
|
899
|
+
request_id: str = None,
|
|
900
|
+
):
|
|
901
|
+
self.request_id = request_id
|
|
902
|
+
|
|
903
|
+
def validate(self):
|
|
904
|
+
pass
|
|
905
|
+
|
|
906
|
+
def to_map(self):
|
|
907
|
+
_map = super().to_map()
|
|
908
|
+
if _map is not None:
|
|
909
|
+
return _map
|
|
910
|
+
|
|
911
|
+
result = dict()
|
|
912
|
+
if self.request_id is not None:
|
|
913
|
+
result['RequestId'] = self.request_id
|
|
914
|
+
return result
|
|
915
|
+
|
|
916
|
+
def from_map(self, m: dict = None):
|
|
917
|
+
m = m or dict()
|
|
918
|
+
if m.get('RequestId') is not None:
|
|
919
|
+
self.request_id = m.get('RequestId')
|
|
920
|
+
return self
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
class BindUserAuthnSourceMappingResponse(TeaModel):
|
|
924
|
+
def __init__(
|
|
925
|
+
self,
|
|
926
|
+
headers: Dict[str, str] = None,
|
|
927
|
+
status_code: int = None,
|
|
928
|
+
body: BindUserAuthnSourceMappingResponseBody = None,
|
|
929
|
+
):
|
|
930
|
+
self.headers = headers
|
|
931
|
+
self.status_code = status_code
|
|
932
|
+
self.body = body
|
|
933
|
+
|
|
934
|
+
def validate(self):
|
|
935
|
+
if self.body:
|
|
936
|
+
self.body.validate()
|
|
937
|
+
|
|
938
|
+
def to_map(self):
|
|
939
|
+
_map = super().to_map()
|
|
940
|
+
if _map is not None:
|
|
941
|
+
return _map
|
|
942
|
+
|
|
943
|
+
result = dict()
|
|
944
|
+
if self.headers is not None:
|
|
945
|
+
result['headers'] = self.headers
|
|
946
|
+
if self.status_code is not None:
|
|
947
|
+
result['statusCode'] = self.status_code
|
|
948
|
+
if self.body is not None:
|
|
949
|
+
result['body'] = self.body.to_map()
|
|
950
|
+
return result
|
|
951
|
+
|
|
952
|
+
def from_map(self, m: dict = None):
|
|
953
|
+
m = m or dict()
|
|
954
|
+
if m.get('headers') is not None:
|
|
955
|
+
self.headers = m.get('headers')
|
|
956
|
+
if m.get('statusCode') is not None:
|
|
957
|
+
self.status_code = m.get('statusCode')
|
|
958
|
+
if m.get('body') is not None:
|
|
959
|
+
temp_model = BindUserAuthnSourceMappingResponseBody()
|
|
960
|
+
self.body = temp_model.from_map(m['body'])
|
|
961
|
+
return self
|
|
962
|
+
|
|
963
|
+
|
|
839
964
|
class CreateApplicationRequest(TeaModel):
|
|
840
965
|
def __init__(
|
|
841
966
|
self,
|
|
@@ -32978,6 +33103,259 @@ class ListSynchronizationJobsResponse(TeaModel):
|
|
|
32978
33103
|
return self
|
|
32979
33104
|
|
|
32980
33105
|
|
|
33106
|
+
class ListUserAuthnSourceMappingsRequest(TeaModel):
|
|
33107
|
+
def __init__(
|
|
33108
|
+
self,
|
|
33109
|
+
identity_provider_id: str = None,
|
|
33110
|
+
instance_id: str = None,
|
|
33111
|
+
max_results: int = None,
|
|
33112
|
+
next_token: str = None,
|
|
33113
|
+
previous_token: str = None,
|
|
33114
|
+
user_external_id: str = None,
|
|
33115
|
+
user_id: str = None,
|
|
33116
|
+
):
|
|
33117
|
+
# 来源Idp Id
|
|
33118
|
+
self.identity_provider_id = identity_provider_id
|
|
33119
|
+
# IDaaS EIAM实例的ID。
|
|
33120
|
+
#
|
|
33121
|
+
# This parameter is required.
|
|
33122
|
+
self.instance_id = instance_id
|
|
33123
|
+
# 分页查询时每页行数。默认值为20,最大值为100。
|
|
33124
|
+
self.max_results = max_results
|
|
33125
|
+
# 查询凭证(Token),取值为上一次API调用返回的NextToken参数值。
|
|
33126
|
+
self.next_token = next_token
|
|
33127
|
+
# 查询上一页凭证(Token),取值为上一次API调用返回的previousToken参数值。
|
|
33128
|
+
self.previous_token = previous_token
|
|
33129
|
+
# 外部关联ID
|
|
33130
|
+
self.user_external_id = user_external_id
|
|
33131
|
+
# 用户ID
|
|
33132
|
+
#
|
|
33133
|
+
# This parameter is required.
|
|
33134
|
+
self.user_id = user_id
|
|
33135
|
+
|
|
33136
|
+
def validate(self):
|
|
33137
|
+
pass
|
|
33138
|
+
|
|
33139
|
+
def to_map(self):
|
|
33140
|
+
_map = super().to_map()
|
|
33141
|
+
if _map is not None:
|
|
33142
|
+
return _map
|
|
33143
|
+
|
|
33144
|
+
result = dict()
|
|
33145
|
+
if self.identity_provider_id is not None:
|
|
33146
|
+
result['IdentityProviderId'] = self.identity_provider_id
|
|
33147
|
+
if self.instance_id is not None:
|
|
33148
|
+
result['InstanceId'] = self.instance_id
|
|
33149
|
+
if self.max_results is not None:
|
|
33150
|
+
result['MaxResults'] = self.max_results
|
|
33151
|
+
if self.next_token is not None:
|
|
33152
|
+
result['NextToken'] = self.next_token
|
|
33153
|
+
if self.previous_token is not None:
|
|
33154
|
+
result['PreviousToken'] = self.previous_token
|
|
33155
|
+
if self.user_external_id is not None:
|
|
33156
|
+
result['UserExternalId'] = self.user_external_id
|
|
33157
|
+
if self.user_id is not None:
|
|
33158
|
+
result['UserId'] = self.user_id
|
|
33159
|
+
return result
|
|
33160
|
+
|
|
33161
|
+
def from_map(self, m: dict = None):
|
|
33162
|
+
m = m or dict()
|
|
33163
|
+
if m.get('IdentityProviderId') is not None:
|
|
33164
|
+
self.identity_provider_id = m.get('IdentityProviderId')
|
|
33165
|
+
if m.get('InstanceId') is not None:
|
|
33166
|
+
self.instance_id = m.get('InstanceId')
|
|
33167
|
+
if m.get('MaxResults') is not None:
|
|
33168
|
+
self.max_results = m.get('MaxResults')
|
|
33169
|
+
if m.get('NextToken') is not None:
|
|
33170
|
+
self.next_token = m.get('NextToken')
|
|
33171
|
+
if m.get('PreviousToken') is not None:
|
|
33172
|
+
self.previous_token = m.get('PreviousToken')
|
|
33173
|
+
if m.get('UserExternalId') is not None:
|
|
33174
|
+
self.user_external_id = m.get('UserExternalId')
|
|
33175
|
+
if m.get('UserId') is not None:
|
|
33176
|
+
self.user_id = m.get('UserId')
|
|
33177
|
+
return self
|
|
33178
|
+
|
|
33179
|
+
|
|
33180
|
+
class ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings(TeaModel):
|
|
33181
|
+
def __init__(
|
|
33182
|
+
self,
|
|
33183
|
+
authn_source_type: str = None,
|
|
33184
|
+
create_time: int = None,
|
|
33185
|
+
identity_provider_id: str = None,
|
|
33186
|
+
instance_id: str = None,
|
|
33187
|
+
update_time: int = None,
|
|
33188
|
+
user_external_id: str = None,
|
|
33189
|
+
user_id: str = None,
|
|
33190
|
+
):
|
|
33191
|
+
# 来源Idp类型
|
|
33192
|
+
self.authn_source_type = authn_source_type
|
|
33193
|
+
# 创建时间
|
|
33194
|
+
self.create_time = create_time
|
|
33195
|
+
# 来源Idp Id
|
|
33196
|
+
self.identity_provider_id = identity_provider_id
|
|
33197
|
+
# 实例Id
|
|
33198
|
+
self.instance_id = instance_id
|
|
33199
|
+
# 最近一次更新时间
|
|
33200
|
+
self.update_time = update_time
|
|
33201
|
+
# 外部ID
|
|
33202
|
+
self.user_external_id = user_external_id
|
|
33203
|
+
# 用户ID
|
|
33204
|
+
self.user_id = user_id
|
|
33205
|
+
|
|
33206
|
+
def validate(self):
|
|
33207
|
+
pass
|
|
33208
|
+
|
|
33209
|
+
def to_map(self):
|
|
33210
|
+
_map = super().to_map()
|
|
33211
|
+
if _map is not None:
|
|
33212
|
+
return _map
|
|
33213
|
+
|
|
33214
|
+
result = dict()
|
|
33215
|
+
if self.authn_source_type is not None:
|
|
33216
|
+
result['AuthnSourceType'] = self.authn_source_type
|
|
33217
|
+
if self.create_time is not None:
|
|
33218
|
+
result['CreateTime'] = self.create_time
|
|
33219
|
+
if self.identity_provider_id is not None:
|
|
33220
|
+
result['IdentityProviderId'] = self.identity_provider_id
|
|
33221
|
+
if self.instance_id is not None:
|
|
33222
|
+
result['InstanceId'] = self.instance_id
|
|
33223
|
+
if self.update_time is not None:
|
|
33224
|
+
result['UpdateTime'] = self.update_time
|
|
33225
|
+
if self.user_external_id is not None:
|
|
33226
|
+
result['UserExternalId'] = self.user_external_id
|
|
33227
|
+
if self.user_id is not None:
|
|
33228
|
+
result['UserId'] = self.user_id
|
|
33229
|
+
return result
|
|
33230
|
+
|
|
33231
|
+
def from_map(self, m: dict = None):
|
|
33232
|
+
m = m or dict()
|
|
33233
|
+
if m.get('AuthnSourceType') is not None:
|
|
33234
|
+
self.authn_source_type = m.get('AuthnSourceType')
|
|
33235
|
+
if m.get('CreateTime') is not None:
|
|
33236
|
+
self.create_time = m.get('CreateTime')
|
|
33237
|
+
if m.get('IdentityProviderId') is not None:
|
|
33238
|
+
self.identity_provider_id = m.get('IdentityProviderId')
|
|
33239
|
+
if m.get('InstanceId') is not None:
|
|
33240
|
+
self.instance_id = m.get('InstanceId')
|
|
33241
|
+
if m.get('UpdateTime') is not None:
|
|
33242
|
+
self.update_time = m.get('UpdateTime')
|
|
33243
|
+
if m.get('UserExternalId') is not None:
|
|
33244
|
+
self.user_external_id = m.get('UserExternalId')
|
|
33245
|
+
if m.get('UserId') is not None:
|
|
33246
|
+
self.user_id = m.get('UserId')
|
|
33247
|
+
return self
|
|
33248
|
+
|
|
33249
|
+
|
|
33250
|
+
class ListUserAuthnSourceMappingsResponseBody(TeaModel):
|
|
33251
|
+
def __init__(
|
|
33252
|
+
self,
|
|
33253
|
+
max_results: int = None,
|
|
33254
|
+
next_token: str = None,
|
|
33255
|
+
previous_token: str = None,
|
|
33256
|
+
request_id: str = None,
|
|
33257
|
+
total_count: int = None,
|
|
33258
|
+
user_authn_source_mappings: List[ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings] = None,
|
|
33259
|
+
):
|
|
33260
|
+
# 分页查询时每页行数。
|
|
33261
|
+
self.max_results = max_results
|
|
33262
|
+
# 本次调用返回的查询凭证(Token)值,用于下一次翻页查询。
|
|
33263
|
+
self.next_token = next_token
|
|
33264
|
+
# 本次调用返回的查询凭证(Token)值,用于上一次翻页查询。
|
|
33265
|
+
self.previous_token = previous_token
|
|
33266
|
+
self.request_id = request_id
|
|
33267
|
+
self.total_count = total_count
|
|
33268
|
+
self.user_authn_source_mappings = user_authn_source_mappings
|
|
33269
|
+
|
|
33270
|
+
def validate(self):
|
|
33271
|
+
if self.user_authn_source_mappings:
|
|
33272
|
+
for k in self.user_authn_source_mappings:
|
|
33273
|
+
if k:
|
|
33274
|
+
k.validate()
|
|
33275
|
+
|
|
33276
|
+
def to_map(self):
|
|
33277
|
+
_map = super().to_map()
|
|
33278
|
+
if _map is not None:
|
|
33279
|
+
return _map
|
|
33280
|
+
|
|
33281
|
+
result = dict()
|
|
33282
|
+
if self.max_results is not None:
|
|
33283
|
+
result['MaxResults'] = self.max_results
|
|
33284
|
+
if self.next_token is not None:
|
|
33285
|
+
result['NextToken'] = self.next_token
|
|
33286
|
+
if self.previous_token is not None:
|
|
33287
|
+
result['PreviousToken'] = self.previous_token
|
|
33288
|
+
if self.request_id is not None:
|
|
33289
|
+
result['RequestId'] = self.request_id
|
|
33290
|
+
if self.total_count is not None:
|
|
33291
|
+
result['TotalCount'] = self.total_count
|
|
33292
|
+
result['UserAuthnSourceMappings'] = []
|
|
33293
|
+
if self.user_authn_source_mappings is not None:
|
|
33294
|
+
for k in self.user_authn_source_mappings:
|
|
33295
|
+
result['UserAuthnSourceMappings'].append(k.to_map() if k else None)
|
|
33296
|
+
return result
|
|
33297
|
+
|
|
33298
|
+
def from_map(self, m: dict = None):
|
|
33299
|
+
m = m or dict()
|
|
33300
|
+
if m.get('MaxResults') is not None:
|
|
33301
|
+
self.max_results = m.get('MaxResults')
|
|
33302
|
+
if m.get('NextToken') is not None:
|
|
33303
|
+
self.next_token = m.get('NextToken')
|
|
33304
|
+
if m.get('PreviousToken') is not None:
|
|
33305
|
+
self.previous_token = m.get('PreviousToken')
|
|
33306
|
+
if m.get('RequestId') is not None:
|
|
33307
|
+
self.request_id = m.get('RequestId')
|
|
33308
|
+
if m.get('TotalCount') is not None:
|
|
33309
|
+
self.total_count = m.get('TotalCount')
|
|
33310
|
+
self.user_authn_source_mappings = []
|
|
33311
|
+
if m.get('UserAuthnSourceMappings') is not None:
|
|
33312
|
+
for k in m.get('UserAuthnSourceMappings'):
|
|
33313
|
+
temp_model = ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings()
|
|
33314
|
+
self.user_authn_source_mappings.append(temp_model.from_map(k))
|
|
33315
|
+
return self
|
|
33316
|
+
|
|
33317
|
+
|
|
33318
|
+
class ListUserAuthnSourceMappingsResponse(TeaModel):
|
|
33319
|
+
def __init__(
|
|
33320
|
+
self,
|
|
33321
|
+
headers: Dict[str, str] = None,
|
|
33322
|
+
status_code: int = None,
|
|
33323
|
+
body: ListUserAuthnSourceMappingsResponseBody = None,
|
|
33324
|
+
):
|
|
33325
|
+
self.headers = headers
|
|
33326
|
+
self.status_code = status_code
|
|
33327
|
+
self.body = body
|
|
33328
|
+
|
|
33329
|
+
def validate(self):
|
|
33330
|
+
if self.body:
|
|
33331
|
+
self.body.validate()
|
|
33332
|
+
|
|
33333
|
+
def to_map(self):
|
|
33334
|
+
_map = super().to_map()
|
|
33335
|
+
if _map is not None:
|
|
33336
|
+
return _map
|
|
33337
|
+
|
|
33338
|
+
result = dict()
|
|
33339
|
+
if self.headers is not None:
|
|
33340
|
+
result['headers'] = self.headers
|
|
33341
|
+
if self.status_code is not None:
|
|
33342
|
+
result['statusCode'] = self.status_code
|
|
33343
|
+
if self.body is not None:
|
|
33344
|
+
result['body'] = self.body.to_map()
|
|
33345
|
+
return result
|
|
33346
|
+
|
|
33347
|
+
def from_map(self, m: dict = None):
|
|
33348
|
+
m = m or dict()
|
|
33349
|
+
if m.get('headers') is not None:
|
|
33350
|
+
self.headers = m.get('headers')
|
|
33351
|
+
if m.get('statusCode') is not None:
|
|
33352
|
+
self.status_code = m.get('statusCode')
|
|
33353
|
+
if m.get('body') is not None:
|
|
33354
|
+
temp_model = ListUserAuthnSourceMappingsResponseBody()
|
|
33355
|
+
self.body = temp_model.from_map(m['body'])
|
|
33356
|
+
return self
|
|
33357
|
+
|
|
33358
|
+
|
|
32981
33359
|
class ListUsersRequest(TeaModel):
|
|
32982
33360
|
def __init__(
|
|
32983
33361
|
self,
|
|
@@ -37931,6 +38309,131 @@ class SetUserPrimaryOrganizationalUnitResponse(TeaModel):
|
|
|
37931
38309
|
return self
|
|
37932
38310
|
|
|
37933
38311
|
|
|
38312
|
+
class UnbindUserAuthnSourceMappingRequest(TeaModel):
|
|
38313
|
+
def __init__(
|
|
38314
|
+
self,
|
|
38315
|
+
identity_provider_id: str = None,
|
|
38316
|
+
instance_id: str = None,
|
|
38317
|
+
user_external_id: str = None,
|
|
38318
|
+
user_id: str = None,
|
|
38319
|
+
):
|
|
38320
|
+
# 来源ID
|
|
38321
|
+
#
|
|
38322
|
+
# This parameter is required.
|
|
38323
|
+
self.identity_provider_id = identity_provider_id
|
|
38324
|
+
# IDaaS EIAM实例的ID。
|
|
38325
|
+
#
|
|
38326
|
+
# This parameter is required.
|
|
38327
|
+
self.instance_id = instance_id
|
|
38328
|
+
# 外部关联ID
|
|
38329
|
+
#
|
|
38330
|
+
# This parameter is required.
|
|
38331
|
+
self.user_external_id = user_external_id
|
|
38332
|
+
# 用户ID
|
|
38333
|
+
#
|
|
38334
|
+
# This parameter is required.
|
|
38335
|
+
self.user_id = user_id
|
|
38336
|
+
|
|
38337
|
+
def validate(self):
|
|
38338
|
+
pass
|
|
38339
|
+
|
|
38340
|
+
def to_map(self):
|
|
38341
|
+
_map = super().to_map()
|
|
38342
|
+
if _map is not None:
|
|
38343
|
+
return _map
|
|
38344
|
+
|
|
38345
|
+
result = dict()
|
|
38346
|
+
if self.identity_provider_id is not None:
|
|
38347
|
+
result['IdentityProviderId'] = self.identity_provider_id
|
|
38348
|
+
if self.instance_id is not None:
|
|
38349
|
+
result['InstanceId'] = self.instance_id
|
|
38350
|
+
if self.user_external_id is not None:
|
|
38351
|
+
result['UserExternalId'] = self.user_external_id
|
|
38352
|
+
if self.user_id is not None:
|
|
38353
|
+
result['UserId'] = self.user_id
|
|
38354
|
+
return result
|
|
38355
|
+
|
|
38356
|
+
def from_map(self, m: dict = None):
|
|
38357
|
+
m = m or dict()
|
|
38358
|
+
if m.get('IdentityProviderId') is not None:
|
|
38359
|
+
self.identity_provider_id = m.get('IdentityProviderId')
|
|
38360
|
+
if m.get('InstanceId') is not None:
|
|
38361
|
+
self.instance_id = m.get('InstanceId')
|
|
38362
|
+
if m.get('UserExternalId') is not None:
|
|
38363
|
+
self.user_external_id = m.get('UserExternalId')
|
|
38364
|
+
if m.get('UserId') is not None:
|
|
38365
|
+
self.user_id = m.get('UserId')
|
|
38366
|
+
return self
|
|
38367
|
+
|
|
38368
|
+
|
|
38369
|
+
class UnbindUserAuthnSourceMappingResponseBody(TeaModel):
|
|
38370
|
+
def __init__(
|
|
38371
|
+
self,
|
|
38372
|
+
request_id: str = None,
|
|
38373
|
+
):
|
|
38374
|
+
self.request_id = request_id
|
|
38375
|
+
|
|
38376
|
+
def validate(self):
|
|
38377
|
+
pass
|
|
38378
|
+
|
|
38379
|
+
def to_map(self):
|
|
38380
|
+
_map = super().to_map()
|
|
38381
|
+
if _map is not None:
|
|
38382
|
+
return _map
|
|
38383
|
+
|
|
38384
|
+
result = dict()
|
|
38385
|
+
if self.request_id is not None:
|
|
38386
|
+
result['RequestId'] = self.request_id
|
|
38387
|
+
return result
|
|
38388
|
+
|
|
38389
|
+
def from_map(self, m: dict = None):
|
|
38390
|
+
m = m or dict()
|
|
38391
|
+
if m.get('RequestId') is not None:
|
|
38392
|
+
self.request_id = m.get('RequestId')
|
|
38393
|
+
return self
|
|
38394
|
+
|
|
38395
|
+
|
|
38396
|
+
class UnbindUserAuthnSourceMappingResponse(TeaModel):
|
|
38397
|
+
def __init__(
|
|
38398
|
+
self,
|
|
38399
|
+
headers: Dict[str, str] = None,
|
|
38400
|
+
status_code: int = None,
|
|
38401
|
+
body: UnbindUserAuthnSourceMappingResponseBody = None,
|
|
38402
|
+
):
|
|
38403
|
+
self.headers = headers
|
|
38404
|
+
self.status_code = status_code
|
|
38405
|
+
self.body = body
|
|
38406
|
+
|
|
38407
|
+
def validate(self):
|
|
38408
|
+
if self.body:
|
|
38409
|
+
self.body.validate()
|
|
38410
|
+
|
|
38411
|
+
def to_map(self):
|
|
38412
|
+
_map = super().to_map()
|
|
38413
|
+
if _map is not None:
|
|
38414
|
+
return _map
|
|
38415
|
+
|
|
38416
|
+
result = dict()
|
|
38417
|
+
if self.headers is not None:
|
|
38418
|
+
result['headers'] = self.headers
|
|
38419
|
+
if self.status_code is not None:
|
|
38420
|
+
result['statusCode'] = self.status_code
|
|
38421
|
+
if self.body is not None:
|
|
38422
|
+
result['body'] = self.body.to_map()
|
|
38423
|
+
return result
|
|
38424
|
+
|
|
38425
|
+
def from_map(self, m: dict = None):
|
|
38426
|
+
m = m or dict()
|
|
38427
|
+
if m.get('headers') is not None:
|
|
38428
|
+
self.headers = m.get('headers')
|
|
38429
|
+
if m.get('statusCode') is not None:
|
|
38430
|
+
self.status_code = m.get('statusCode')
|
|
38431
|
+
if m.get('body') is not None:
|
|
38432
|
+
temp_model = UnbindUserAuthnSourceMappingResponseBody()
|
|
38433
|
+
self.body = temp_model.from_map(m['body'])
|
|
38434
|
+
return self
|
|
38435
|
+
|
|
38436
|
+
|
|
37934
38437
|
class UnlockUserRequest(TeaModel):
|
|
37935
38438
|
def __init__(
|
|
37936
38439
|
self,
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_eiam20211201/__init__.py,sha256=ON8BSxsaUQTSqD-qiuAxx2dZuoSpQhFkYH8X1k6094s,21
|
|
2
|
+
alibabacloud_eiam20211201/client.py,sha256=Z4yuAFDUEokNsmk4qv2Q40eSfb-RvDq9j_NUMhLXE_g,930896
|
|
3
|
+
alibabacloud_eiam20211201/models.py,sha256=935zSsCJ2eaHThRFiQRmsd3Eis9ZXqRbf8bt-nmxOpY,1510106
|
|
4
|
+
alibabacloud_eiam20211201-2.5.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_eiam20211201-2.5.0.dist-info/METADATA,sha256=XpWo68qtzcR7PtIRubxkcfNibwDcH2eZTJAHZxkVnlw,2319
|
|
6
|
+
alibabacloud_eiam20211201-2.5.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_eiam20211201-2.5.0.dist-info/top_level.txt,sha256=xKHBhu7RrmpWSYLSKKu2KBqRNZs1NsYQJN3isv5EYHU,26
|
|
8
|
+
alibabacloud_eiam20211201-2.5.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_eiam20211201/__init__.py,sha256=BF03pzqwG7B9KHB7sihBBhKy-mImHjrGhr95_NGaVag,21
|
|
2
|
-
alibabacloud_eiam20211201/client.py,sha256=7z2yCh6XxLTghINNztUdxQjAP2IOCjlnVumyqUQq1P8,917018
|
|
3
|
-
alibabacloud_eiam20211201/models.py,sha256=sxpaaAIX87OZZ7D10lP86NAIqDoXVZgyD5cDQMG0XQ8,1493458
|
|
4
|
-
alibabacloud_eiam20211201-2.4.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_eiam20211201-2.4.0.dist-info/METADATA,sha256=tAoDNfG7JOZ9S59D3aoHPIX5BrNyeXMBq_oNYw8JD_c,2319
|
|
6
|
-
alibabacloud_eiam20211201-2.4.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_eiam20211201-2.4.0.dist-info/top_level.txt,sha256=xKHBhu7RrmpWSYLSKKu2KBqRNZs1NsYQJN3isv5EYHU,26
|
|
8
|
-
alibabacloud_eiam20211201-2.4.0.dist-info/RECORD,,
|
{alibabacloud_eiam20211201-2.4.0.dist-info → alibabacloud_eiam20211201-2.5.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_eiam20211201-2.4.0.dist-info → alibabacloud_eiam20211201-2.5.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|