alibabacloud-ecd20201002 1.2.2__py3-none-any.whl → 1.2.4__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_ecd20201002/__init__.py +1 -1
- alibabacloud_ecd20201002/client.py +308 -628
- alibabacloud_ecd20201002/models.py +137 -0
- {alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.4.dist-info}/METADATA +2 -2
- alibabacloud_ecd20201002-1.2.4.dist-info/RECORD +8 -0
- alibabacloud_ecd20201002-1.2.2.dist-info/RECORD +0 -8
- {alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.4.dist-info}/LICENSE +0 -0
- {alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.4.dist-info}/WHEEL +0 -0
- {alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.4.dist-info}/top_level.txt +0 -0
|
@@ -214,20 +214,35 @@ class ChangePasswordRequest(TeaModel):
|
|
|
214
214
|
region_id: str = None,
|
|
215
215
|
session_id: str = None,
|
|
216
216
|
):
|
|
217
|
+
# The client ID. The system generates a unique ID for each client.
|
|
218
|
+
#
|
|
217
219
|
# This parameter is required.
|
|
218
220
|
self.client_id = client_id
|
|
221
|
+
# The user ID.
|
|
222
|
+
#
|
|
219
223
|
# This parameter is required.
|
|
220
224
|
self.end_user_id = end_user_id
|
|
225
|
+
# The logon token.
|
|
226
|
+
#
|
|
221
227
|
# This parameter is required.
|
|
222
228
|
self.login_token = login_token
|
|
229
|
+
# The new password.
|
|
230
|
+
#
|
|
223
231
|
# This parameter is required.
|
|
224
232
|
self.new_password = new_password
|
|
233
|
+
# The office network ID.
|
|
234
|
+
#
|
|
225
235
|
# This parameter is required.
|
|
226
236
|
self.office_site_id = office_site_id
|
|
237
|
+
# The current password.
|
|
238
|
+
#
|
|
227
239
|
# This parameter is required.
|
|
228
240
|
self.old_password = old_password
|
|
241
|
+
# The region ID.
|
|
242
|
+
#
|
|
229
243
|
# This parameter is required.
|
|
230
244
|
self.region_id = region_id
|
|
245
|
+
# The session ID.
|
|
231
246
|
self.session_id = session_id
|
|
232
247
|
|
|
233
248
|
def validate(self):
|
|
@@ -284,7 +299,9 @@ class ChangePasswordResponseBody(TeaModel):
|
|
|
284
299
|
login_token: str = None,
|
|
285
300
|
request_id: str = None,
|
|
286
301
|
):
|
|
302
|
+
# The logon token.
|
|
287
303
|
self.login_token = login_token
|
|
304
|
+
# The request ID.
|
|
288
305
|
self.request_id = request_id
|
|
289
306
|
|
|
290
307
|
def validate(self):
|
|
@@ -489,9 +506,14 @@ class DescribeDirectoriesRequest(TeaModel):
|
|
|
489
506
|
directory_id: List[str] = None,
|
|
490
507
|
region_id: str = None,
|
|
491
508
|
):
|
|
509
|
+
# The client ID. The system generates a unique ID for each client.
|
|
510
|
+
#
|
|
492
511
|
# This parameter is required.
|
|
493
512
|
self.client_id = client_id
|
|
513
|
+
# The directory IDs.
|
|
494
514
|
self.directory_id = directory_id
|
|
515
|
+
# The region ID.
|
|
516
|
+
#
|
|
495
517
|
# This parameter is required.
|
|
496
518
|
self.region_id = region_id
|
|
497
519
|
|
|
@@ -532,10 +554,21 @@ class DescribeDirectoriesResponseBodyDirectories(TeaModel):
|
|
|
532
554
|
provider_id: str = None,
|
|
533
555
|
sso_service_url: str = None,
|
|
534
556
|
):
|
|
557
|
+
# The connection method.
|
|
558
|
+
#
|
|
559
|
+
# Valid values:
|
|
560
|
+
#
|
|
561
|
+
# * VPC: End users connect to cloud computers over an enterprise virtual private cloud (VPC).
|
|
562
|
+
# * INTERNET: End users connect to cloud computers over the Internet.
|
|
563
|
+
# * ANY: End users connect to cloud computers over the Internet or an enterprise VPC.
|
|
535
564
|
self.desktop_access_type = desktop_access_type
|
|
565
|
+
# The directory ID.
|
|
536
566
|
self.directory_id = directory_id
|
|
567
|
+
# The directory type.
|
|
537
568
|
self.directory_type = directory_type
|
|
569
|
+
# The provider ID.
|
|
538
570
|
self.provider_id = provider_id
|
|
571
|
+
# The URL of the SSO service.
|
|
539
572
|
self.sso_service_url = sso_service_url
|
|
540
573
|
|
|
541
574
|
def validate(self):
|
|
@@ -580,7 +613,9 @@ class DescribeDirectoriesResponseBody(TeaModel):
|
|
|
580
613
|
directories: List[DescribeDirectoriesResponseBodyDirectories] = None,
|
|
581
614
|
request_id: str = None,
|
|
582
615
|
):
|
|
616
|
+
# The directories.
|
|
583
617
|
self.directories = directories
|
|
618
|
+
# The request ID.
|
|
584
619
|
self.request_id = request_id
|
|
585
620
|
|
|
586
621
|
def validate(self):
|
|
@@ -664,12 +699,20 @@ class DescribeFingerPrintTemplatesRequest(TeaModel):
|
|
|
664
699
|
region_id: str = None,
|
|
665
700
|
session_id: str = None,
|
|
666
701
|
):
|
|
702
|
+
# The client ID. The system generates a unique ID for each client.
|
|
703
|
+
#
|
|
667
704
|
# This parameter is required.
|
|
668
705
|
self.client_id = client_id
|
|
706
|
+
# The logon token.
|
|
707
|
+
#
|
|
669
708
|
# This parameter is required.
|
|
670
709
|
self.login_token = login_token
|
|
710
|
+
# The region ID
|
|
711
|
+
#
|
|
671
712
|
# This parameter is required.
|
|
672
713
|
self.region_id = region_id
|
|
714
|
+
# The session ID.
|
|
715
|
+
#
|
|
673
716
|
# This parameter is required.
|
|
674
717
|
self.session_id = session_id
|
|
675
718
|
|
|
@@ -716,12 +759,19 @@ class DescribeFingerPrintTemplatesResponseBodyFingerPrintTemplates(TeaModel):
|
|
|
716
759
|
login_time: str = None,
|
|
717
760
|
office_site_id: str = None,
|
|
718
761
|
):
|
|
762
|
+
# The client ID. The system generates a unique ID for each client.
|
|
719
763
|
self.client_id = client_id
|
|
764
|
+
# The time when the template was created.
|
|
720
765
|
self.creation_time = creation_time
|
|
766
|
+
# The description of the template.
|
|
721
767
|
self.description = description
|
|
768
|
+
# The user ID.
|
|
722
769
|
self.end_user_id = end_user_id
|
|
770
|
+
# The index.
|
|
723
771
|
self.index = index
|
|
772
|
+
# The logon time.
|
|
724
773
|
self.login_time = login_time
|
|
774
|
+
# The office network ID.
|
|
725
775
|
self.office_site_id = office_site_id
|
|
726
776
|
|
|
727
777
|
def validate(self):
|
|
@@ -774,7 +824,9 @@ class DescribeFingerPrintTemplatesResponseBody(TeaModel):
|
|
|
774
824
|
finger_print_templates: List[DescribeFingerPrintTemplatesResponseBodyFingerPrintTemplates] = None,
|
|
775
825
|
request_id: str = None,
|
|
776
826
|
):
|
|
827
|
+
# The fingerprint templates.
|
|
777
828
|
self.finger_print_templates = finger_print_templates
|
|
829
|
+
# The request ID.
|
|
778
830
|
self.request_id = request_id
|
|
779
831
|
|
|
780
832
|
def validate(self):
|
|
@@ -1835,8 +1887,11 @@ class DescribeRegionsRequest(TeaModel):
|
|
|
1835
1887
|
client_id: str = None,
|
|
1836
1888
|
region_id: str = None,
|
|
1837
1889
|
):
|
|
1890
|
+
# The client ID. The system generates a unique ID for each client.
|
|
1891
|
+
#
|
|
1838
1892
|
# This parameter is required.
|
|
1839
1893
|
self.client_id = client_id
|
|
1894
|
+
# The region ID.
|
|
1840
1895
|
self.region_id = region_id
|
|
1841
1896
|
|
|
1842
1897
|
def validate(self):
|
|
@@ -1869,7 +1924,9 @@ class DescribeRegionsResponseBodyRegions(TeaModel):
|
|
|
1869
1924
|
region_endpoint: str = None,
|
|
1870
1925
|
region_id: str = None,
|
|
1871
1926
|
):
|
|
1927
|
+
# The region endpoint.
|
|
1872
1928
|
self.region_endpoint = region_endpoint
|
|
1929
|
+
# The region ID.
|
|
1873
1930
|
self.region_id = region_id
|
|
1874
1931
|
|
|
1875
1932
|
def validate(self):
|
|
@@ -1902,7 +1959,9 @@ class DescribeRegionsResponseBody(TeaModel):
|
|
|
1902
1959
|
regions: List[DescribeRegionsResponseBodyRegions] = None,
|
|
1903
1960
|
request_id: str = None,
|
|
1904
1961
|
):
|
|
1962
|
+
# The regions.
|
|
1905
1963
|
self.regions = regions
|
|
1964
|
+
# The request ID.
|
|
1906
1965
|
self.request_id = request_id
|
|
1907
1966
|
|
|
1908
1967
|
def validate(self):
|
|
@@ -2793,10 +2852,12 @@ class DescribeUserResourcesResponseBodyResourcesOsUpdate(TeaModel):
|
|
|
2793
2852
|
class DescribeUserResourcesResponseBodyResourcesSessions(TeaModel):
|
|
2794
2853
|
def __init__(
|
|
2795
2854
|
self,
|
|
2855
|
+
nick_name: str = None,
|
|
2796
2856
|
resource_session_start_time: str = None,
|
|
2797
2857
|
user_id: str = None,
|
|
2798
2858
|
user_principal_name: str = None,
|
|
2799
2859
|
):
|
|
2860
|
+
self.nick_name = nick_name
|
|
2800
2861
|
self.resource_session_start_time = resource_session_start_time
|
|
2801
2862
|
self.user_id = user_id
|
|
2802
2863
|
self.user_principal_name = user_principal_name
|
|
@@ -2810,6 +2871,8 @@ class DescribeUserResourcesResponseBodyResourcesSessions(TeaModel):
|
|
|
2810
2871
|
return _map
|
|
2811
2872
|
|
|
2812
2873
|
result = dict()
|
|
2874
|
+
if self.nick_name is not None:
|
|
2875
|
+
result['NickName'] = self.nick_name
|
|
2813
2876
|
if self.resource_session_start_time is not None:
|
|
2814
2877
|
result['ResourceSessionStartTime'] = self.resource_session_start_time
|
|
2815
2878
|
if self.user_id is not None:
|
|
@@ -2820,6 +2883,8 @@ class DescribeUserResourcesResponseBodyResourcesSessions(TeaModel):
|
|
|
2820
2883
|
|
|
2821
2884
|
def from_map(self, m: dict = None):
|
|
2822
2885
|
m = m or dict()
|
|
2886
|
+
if m.get('NickName') is not None:
|
|
2887
|
+
self.nick_name = m.get('NickName')
|
|
2823
2888
|
if m.get('ResourceSessionStartTime') is not None:
|
|
2824
2889
|
self.resource_session_start_time = m.get('ResourceSessionStartTime')
|
|
2825
2890
|
if m.get('UserId') is not None:
|
|
@@ -3308,16 +3373,28 @@ class EncryptPasswordRequest(TeaModel):
|
|
|
3308
3373
|
region_id: str = None,
|
|
3309
3374
|
session_id: str = None,
|
|
3310
3375
|
):
|
|
3376
|
+
# The ID of the client. The system generates a unique ID for each client.
|
|
3377
|
+
#
|
|
3311
3378
|
# This parameter is required.
|
|
3312
3379
|
self.client_id = client_id
|
|
3380
|
+
# The directory ID.
|
|
3313
3381
|
self.directory_id = directory_id
|
|
3382
|
+
# The logon token.
|
|
3383
|
+
#
|
|
3314
3384
|
# This parameter is required.
|
|
3315
3385
|
self.login_token = login_token
|
|
3386
|
+
# The office network ID.
|
|
3316
3387
|
self.office_site_id = office_site_id
|
|
3388
|
+
# The password that you want to encrypt.
|
|
3389
|
+
#
|
|
3317
3390
|
# This parameter is required.
|
|
3318
3391
|
self.password = password
|
|
3392
|
+
# The region ID.
|
|
3393
|
+
#
|
|
3319
3394
|
# This parameter is required.
|
|
3320
3395
|
self.region_id = region_id
|
|
3396
|
+
# The session ID.
|
|
3397
|
+
#
|
|
3321
3398
|
# This parameter is required.
|
|
3322
3399
|
self.session_id = session_id
|
|
3323
3400
|
|
|
@@ -3371,7 +3448,9 @@ class EncryptPasswordResponseBody(TeaModel):
|
|
|
3371
3448
|
encrypted_password: str = None,
|
|
3372
3449
|
request_id: str = None,
|
|
3373
3450
|
):
|
|
3451
|
+
# The encrypted password.
|
|
3374
3452
|
self.encrypted_password = encrypted_password
|
|
3453
|
+
# The request ID.
|
|
3375
3454
|
self.request_id = request_id
|
|
3376
3455
|
|
|
3377
3456
|
def validate(self):
|
|
@@ -5176,16 +5255,27 @@ class ResetPasswordRequest(TeaModel):
|
|
|
5176
5255
|
region_id: str = None,
|
|
5177
5256
|
phone: str = None,
|
|
5178
5257
|
):
|
|
5258
|
+
# The client ID. The system generates a unique ID for each client.
|
|
5259
|
+
#
|
|
5179
5260
|
# This parameter is required.
|
|
5180
5261
|
self.client_id = client_id
|
|
5262
|
+
# The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](https://help.aliyun.com/document_detail/25693.html).
|
|
5181
5263
|
self.client_token = client_token
|
|
5264
|
+
# The email address of the user.
|
|
5182
5265
|
self.email = email
|
|
5266
|
+
# The user ID.
|
|
5267
|
+
#
|
|
5183
5268
|
# This parameter is required.
|
|
5184
5269
|
self.end_user_id = end_user_id
|
|
5270
|
+
# The office network ID.
|
|
5271
|
+
#
|
|
5185
5272
|
# This parameter is required.
|
|
5186
5273
|
self.office_site_id = office_site_id
|
|
5274
|
+
# The region ID.
|
|
5275
|
+
#
|
|
5187
5276
|
# This parameter is required.
|
|
5188
5277
|
self.region_id = region_id
|
|
5278
|
+
# The phone number of the user.
|
|
5189
5279
|
self.phone = phone
|
|
5190
5280
|
|
|
5191
5281
|
def validate(self):
|
|
@@ -5237,6 +5327,7 @@ class ResetPasswordResponseBody(TeaModel):
|
|
|
5237
5327
|
self,
|
|
5238
5328
|
request_id: str = None,
|
|
5239
5329
|
):
|
|
5330
|
+
# The request ID.
|
|
5240
5331
|
self.request_id = request_id
|
|
5241
5332
|
|
|
5242
5333
|
def validate(self):
|
|
@@ -5311,16 +5402,27 @@ class ResetSnapshotRequest(TeaModel):
|
|
|
5311
5402
|
snapshot_id: str = None,
|
|
5312
5403
|
stop_desktop: bool = None,
|
|
5313
5404
|
):
|
|
5405
|
+
# The client ID. The system generates a unique ID for each client.
|
|
5406
|
+
#
|
|
5314
5407
|
# This parameter is required.
|
|
5315
5408
|
self.client_id = client_id
|
|
5409
|
+
# The cloud computer ID.
|
|
5316
5410
|
self.desktop_id = desktop_id
|
|
5411
|
+
# The logon token.
|
|
5412
|
+
#
|
|
5317
5413
|
# This parameter is required.
|
|
5318
5414
|
self.login_token = login_token
|
|
5415
|
+
# The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
5416
|
+
#
|
|
5319
5417
|
# This parameter is required.
|
|
5320
5418
|
self.region_id = region_id
|
|
5419
|
+
# The session ID.
|
|
5321
5420
|
self.session_id = session_id
|
|
5421
|
+
# The snapshot ID.
|
|
5422
|
+
#
|
|
5322
5423
|
# This parameter is required.
|
|
5323
5424
|
self.snapshot_id = snapshot_id
|
|
5425
|
+
# Specifies whether to stop the cloud computer.
|
|
5324
5426
|
self.stop_desktop = stop_desktop
|
|
5325
5427
|
|
|
5326
5428
|
def validate(self):
|
|
@@ -5372,6 +5474,7 @@ class ResetSnapshotResponseBody(TeaModel):
|
|
|
5372
5474
|
self,
|
|
5373
5475
|
request_id: str = None,
|
|
5374
5476
|
):
|
|
5477
|
+
# The request ID.
|
|
5375
5478
|
self.request_id = request_id
|
|
5376
5479
|
|
|
5377
5480
|
def validate(self):
|
|
@@ -5447,14 +5550,23 @@ class SendTokenCodeRequest(TeaModel):
|
|
|
5447
5550
|
session_id: str = None,
|
|
5448
5551
|
token_code: str = None,
|
|
5449
5552
|
):
|
|
5553
|
+
# The client ID. The system generates a unique ID for each client.
|
|
5554
|
+
#
|
|
5450
5555
|
# This parameter is required.
|
|
5451
5556
|
self.client_id = client_id
|
|
5557
|
+
# The operating system on which the client runs.
|
|
5452
5558
|
self.client_os = client_os
|
|
5559
|
+
# The client version. If you use an Alibaba Cloud Workspace client, you can view the client version in the "About" dialog box on the client logon page.
|
|
5453
5560
|
self.client_version = client_version
|
|
5561
|
+
# The username of the account.
|
|
5454
5562
|
self.end_user_id = end_user_id
|
|
5563
|
+
# The logon token.
|
|
5455
5564
|
self.login_token = login_token
|
|
5565
|
+
# The office network ID.
|
|
5456
5566
|
self.office_site_id = office_site_id
|
|
5567
|
+
# The session ID.
|
|
5457
5568
|
self.session_id = session_id
|
|
5569
|
+
# If two-factor authentication is enabled for clients in the Elastic Desktop Service (EDS) Enterprise console, the system will send a verification code to the user\\"s email address if it detects that the current logged-on user is at risk. This parameter is required if you set `CurrentStage` to `TokenVerify`.
|
|
5458
5570
|
self.token_code = token_code
|
|
5459
5571
|
|
|
5460
5572
|
def validate(self):
|
|
@@ -5510,6 +5622,7 @@ class SendTokenCodeResponseBody(TeaModel):
|
|
|
5510
5622
|
self,
|
|
5511
5623
|
request_id: str = None,
|
|
5512
5624
|
):
|
|
5625
|
+
# The request ID.
|
|
5513
5626
|
self.request_id = request_id
|
|
5514
5627
|
|
|
5515
5628
|
def validate(self):
|
|
@@ -6192,6 +6305,7 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6192
6305
|
region_id: str = None,
|
|
6193
6306
|
session_id: str = None,
|
|
6194
6307
|
session_token: str = None,
|
|
6308
|
+
uuid: str = None,
|
|
6195
6309
|
):
|
|
6196
6310
|
# The client ID. The system generates a unique ID for each client.
|
|
6197
6311
|
#
|
|
@@ -6218,6 +6332,7 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6218
6332
|
self.session_id = session_id
|
|
6219
6333
|
# The logon token.
|
|
6220
6334
|
self.session_token = session_token
|
|
6335
|
+
self.uuid = uuid
|
|
6221
6336
|
|
|
6222
6337
|
def validate(self):
|
|
6223
6338
|
pass
|
|
@@ -6248,6 +6363,8 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6248
6363
|
result['SessionId'] = self.session_id
|
|
6249
6364
|
if self.session_token is not None:
|
|
6250
6365
|
result['SessionToken'] = self.session_token
|
|
6366
|
+
if self.uuid is not None:
|
|
6367
|
+
result['Uuid'] = self.uuid
|
|
6251
6368
|
return result
|
|
6252
6369
|
|
|
6253
6370
|
def from_map(self, m: dict = None):
|
|
@@ -6272,6 +6389,8 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6272
6389
|
self.session_id = m.get('SessionId')
|
|
6273
6390
|
if m.get('SessionToken') is not None:
|
|
6274
6391
|
self.session_token = m.get('SessionToken')
|
|
6392
|
+
if m.get('Uuid') is not None:
|
|
6393
|
+
self.uuid = m.get('Uuid')
|
|
6275
6394
|
return self
|
|
6276
6395
|
|
|
6277
6396
|
|
|
@@ -6491,16 +6610,33 @@ class UnbindUserDesktopRequest(TeaModel):
|
|
|
6491
6610
|
session_id: str = None,
|
|
6492
6611
|
user_desktop_id: str = None,
|
|
6493
6612
|
):
|
|
6613
|
+
# The client ID.
|
|
6614
|
+
#
|
|
6494
6615
|
# This parameter is required.
|
|
6495
6616
|
self.client_id = client_id
|
|
6617
|
+
# The client type.
|
|
6496
6618
|
self.client_type = client_type
|
|
6619
|
+
# Specifies whether to enable forced unbinding.
|
|
6620
|
+
#
|
|
6621
|
+
# Valid values:
|
|
6622
|
+
#
|
|
6623
|
+
# * true: Even when end users connect to cloud computers, the forced unbinding is still enforced.
|
|
6624
|
+
# * false: Forced unbinding is only enforced when end users are disconnected from cloud computers.
|
|
6497
6625
|
self.force = force
|
|
6626
|
+
# The logon token.
|
|
6627
|
+
#
|
|
6498
6628
|
# This parameter is required.
|
|
6499
6629
|
self.login_token = login_token
|
|
6630
|
+
# The region ID.
|
|
6631
|
+
#
|
|
6500
6632
|
# This parameter is required.
|
|
6501
6633
|
self.region_id = region_id
|
|
6634
|
+
# The session ID.
|
|
6635
|
+
#
|
|
6502
6636
|
# This parameter is required.
|
|
6503
6637
|
self.session_id = session_id
|
|
6638
|
+
# The cloud computer ID.
|
|
6639
|
+
#
|
|
6504
6640
|
# This parameter is required.
|
|
6505
6641
|
self.user_desktop_id = user_desktop_id
|
|
6506
6642
|
|
|
@@ -6553,6 +6689,7 @@ class UnbindUserDesktopResponseBody(TeaModel):
|
|
|
6553
6689
|
self,
|
|
6554
6690
|
request_id: str = None,
|
|
6555
6691
|
):
|
|
6692
|
+
# The request ID.
|
|
6556
6693
|
self.request_id = request_id
|
|
6557
6694
|
|
|
6558
6695
|
def validate(self):
|
{alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.4.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-ecd20201002
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: Alibaba Cloud ecd (20201002) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -23,7 +23,7 @@ Description-Content-Type: text/markdown
|
|
|
23
23
|
License-File: LICENSE
|
|
24
24
|
Requires-Dist: alibabacloud-endpoint-util (<1.0.0,>=0.0.3)
|
|
25
25
|
Requires-Dist: alibabacloud-openapi-util (<1.0.0,>=0.2.2)
|
|
26
|
-
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.3.
|
|
26
|
+
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.3.15)
|
|
27
27
|
Requires-Dist: alibabacloud-tea-util (<1.0.0,>=0.3.13)
|
|
28
28
|
|
|
29
29
|
English | [简体中文](README-CN.md)
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_ecd20201002/__init__.py,sha256=Eru8SvB2NultqxzvVYgTUAoDmva3QHvw6BQ8yThJwRI,21
|
|
2
|
+
alibabacloud_ecd20201002/client.py,sha256=QpzFWjiVW_YLey-qv_o6NVR2l41UyRXSMpJ8Nb69cIk,156704
|
|
3
|
+
alibabacloud_ecd20201002/models.py,sha256=YGkk4-L-hwBHh2K2BnMDiZb0aRJ2D8zMgFBjLWI8STw,241911
|
|
4
|
+
alibabacloud_ecd20201002-1.2.4.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_ecd20201002-1.2.4.dist-info/METADATA,sha256=BeMS_44kU993YXudg7lq4KqQIOdx0xwt6i8IlxclbF4,2312
|
|
6
|
+
alibabacloud_ecd20201002-1.2.4.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_ecd20201002-1.2.4.dist-info/top_level.txt,sha256=StSX710186VDYReoyBW7AC51spfR_S0-5CO0fZyRBCk,25
|
|
8
|
+
alibabacloud_ecd20201002-1.2.4.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_ecd20201002/__init__.py,sha256=2_DyzmgJ0plqyqXlXQ8pllXrvVC2oPLEZT32l4anAic,21
|
|
2
|
-
alibabacloud_ecd20201002/client.py,sha256=QQvTlVArx_htvOmZ5V-QiKwrzhADzpxKdqG8agdvnr0,175042
|
|
3
|
-
alibabacloud_ecd20201002/models.py,sha256=02oVAwcxtnU5HpLv-CSTUX1_GyBC7u55WKiKB3-aV6Q,236719
|
|
4
|
-
alibabacloud_ecd20201002-1.2.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_ecd20201002-1.2.2.dist-info/METADATA,sha256=izoP8bHH6jfMsSQF_BGUzCBeZjfnD1Xa-fhbj8KxdSA,2312
|
|
6
|
-
alibabacloud_ecd20201002-1.2.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_ecd20201002-1.2.2.dist-info/top_level.txt,sha256=StSX710186VDYReoyBW7AC51spfR_S0-5CO0fZyRBCk,25
|
|
8
|
-
alibabacloud_ecd20201002-1.2.2.dist-info/RECORD,,
|
{alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.4.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.4.dist-info}/top_level.txt
RENAMED
|
File without changes
|