alibabacloud-ecd20201002 1.2.2__py3-none-any.whl → 1.2.3__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 +131 -0
- {alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.3.dist-info}/METADATA +2 -2
- alibabacloud_ecd20201002-1.2.3.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.3.dist-info}/LICENSE +0 -0
- {alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.3.dist-info}/WHEEL +0 -0
- {alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.3.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):
|
|
@@ -3308,16 +3367,28 @@ class EncryptPasswordRequest(TeaModel):
|
|
|
3308
3367
|
region_id: str = None,
|
|
3309
3368
|
session_id: str = None,
|
|
3310
3369
|
):
|
|
3370
|
+
# The ID of the client. The system generates a unique ID for each client.
|
|
3371
|
+
#
|
|
3311
3372
|
# This parameter is required.
|
|
3312
3373
|
self.client_id = client_id
|
|
3374
|
+
# The directory ID.
|
|
3313
3375
|
self.directory_id = directory_id
|
|
3376
|
+
# The logon token.
|
|
3377
|
+
#
|
|
3314
3378
|
# This parameter is required.
|
|
3315
3379
|
self.login_token = login_token
|
|
3380
|
+
# The office network ID.
|
|
3316
3381
|
self.office_site_id = office_site_id
|
|
3382
|
+
# The password that you want to encrypt.
|
|
3383
|
+
#
|
|
3317
3384
|
# This parameter is required.
|
|
3318
3385
|
self.password = password
|
|
3386
|
+
# The region ID.
|
|
3387
|
+
#
|
|
3319
3388
|
# This parameter is required.
|
|
3320
3389
|
self.region_id = region_id
|
|
3390
|
+
# The session ID.
|
|
3391
|
+
#
|
|
3321
3392
|
# This parameter is required.
|
|
3322
3393
|
self.session_id = session_id
|
|
3323
3394
|
|
|
@@ -3371,7 +3442,9 @@ class EncryptPasswordResponseBody(TeaModel):
|
|
|
3371
3442
|
encrypted_password: str = None,
|
|
3372
3443
|
request_id: str = None,
|
|
3373
3444
|
):
|
|
3445
|
+
# The encrypted password.
|
|
3374
3446
|
self.encrypted_password = encrypted_password
|
|
3447
|
+
# The request ID.
|
|
3375
3448
|
self.request_id = request_id
|
|
3376
3449
|
|
|
3377
3450
|
def validate(self):
|
|
@@ -5176,16 +5249,27 @@ class ResetPasswordRequest(TeaModel):
|
|
|
5176
5249
|
region_id: str = None,
|
|
5177
5250
|
phone: str = None,
|
|
5178
5251
|
):
|
|
5252
|
+
# The client ID. The system generates a unique ID for each client.
|
|
5253
|
+
#
|
|
5179
5254
|
# This parameter is required.
|
|
5180
5255
|
self.client_id = client_id
|
|
5256
|
+
# 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
5257
|
self.client_token = client_token
|
|
5258
|
+
# The email address of the user.
|
|
5182
5259
|
self.email = email
|
|
5260
|
+
# The user ID.
|
|
5261
|
+
#
|
|
5183
5262
|
# This parameter is required.
|
|
5184
5263
|
self.end_user_id = end_user_id
|
|
5264
|
+
# The office network ID.
|
|
5265
|
+
#
|
|
5185
5266
|
# This parameter is required.
|
|
5186
5267
|
self.office_site_id = office_site_id
|
|
5268
|
+
# The region ID.
|
|
5269
|
+
#
|
|
5187
5270
|
# This parameter is required.
|
|
5188
5271
|
self.region_id = region_id
|
|
5272
|
+
# The phone number of the user.
|
|
5189
5273
|
self.phone = phone
|
|
5190
5274
|
|
|
5191
5275
|
def validate(self):
|
|
@@ -5237,6 +5321,7 @@ class ResetPasswordResponseBody(TeaModel):
|
|
|
5237
5321
|
self,
|
|
5238
5322
|
request_id: str = None,
|
|
5239
5323
|
):
|
|
5324
|
+
# The request ID.
|
|
5240
5325
|
self.request_id = request_id
|
|
5241
5326
|
|
|
5242
5327
|
def validate(self):
|
|
@@ -5311,16 +5396,27 @@ class ResetSnapshotRequest(TeaModel):
|
|
|
5311
5396
|
snapshot_id: str = None,
|
|
5312
5397
|
stop_desktop: bool = None,
|
|
5313
5398
|
):
|
|
5399
|
+
# The client ID. The system generates a unique ID for each client.
|
|
5400
|
+
#
|
|
5314
5401
|
# This parameter is required.
|
|
5315
5402
|
self.client_id = client_id
|
|
5403
|
+
# The cloud computer ID.
|
|
5316
5404
|
self.desktop_id = desktop_id
|
|
5405
|
+
# The logon token.
|
|
5406
|
+
#
|
|
5317
5407
|
# This parameter is required.
|
|
5318
5408
|
self.login_token = login_token
|
|
5409
|
+
# The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
5410
|
+
#
|
|
5319
5411
|
# This parameter is required.
|
|
5320
5412
|
self.region_id = region_id
|
|
5413
|
+
# The session ID.
|
|
5321
5414
|
self.session_id = session_id
|
|
5415
|
+
# The snapshot ID.
|
|
5416
|
+
#
|
|
5322
5417
|
# This parameter is required.
|
|
5323
5418
|
self.snapshot_id = snapshot_id
|
|
5419
|
+
# Specifies whether to stop the cloud computer.
|
|
5324
5420
|
self.stop_desktop = stop_desktop
|
|
5325
5421
|
|
|
5326
5422
|
def validate(self):
|
|
@@ -5372,6 +5468,7 @@ class ResetSnapshotResponseBody(TeaModel):
|
|
|
5372
5468
|
self,
|
|
5373
5469
|
request_id: str = None,
|
|
5374
5470
|
):
|
|
5471
|
+
# The request ID.
|
|
5375
5472
|
self.request_id = request_id
|
|
5376
5473
|
|
|
5377
5474
|
def validate(self):
|
|
@@ -5447,14 +5544,23 @@ class SendTokenCodeRequest(TeaModel):
|
|
|
5447
5544
|
session_id: str = None,
|
|
5448
5545
|
token_code: str = None,
|
|
5449
5546
|
):
|
|
5547
|
+
# The client ID. The system generates a unique ID for each client.
|
|
5548
|
+
#
|
|
5450
5549
|
# This parameter is required.
|
|
5451
5550
|
self.client_id = client_id
|
|
5551
|
+
# The operating system on which the client runs.
|
|
5452
5552
|
self.client_os = client_os
|
|
5553
|
+
# 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
5554
|
self.client_version = client_version
|
|
5555
|
+
# The username of the account.
|
|
5454
5556
|
self.end_user_id = end_user_id
|
|
5557
|
+
# The logon token.
|
|
5455
5558
|
self.login_token = login_token
|
|
5559
|
+
# The office network ID.
|
|
5456
5560
|
self.office_site_id = office_site_id
|
|
5561
|
+
# The session ID.
|
|
5457
5562
|
self.session_id = session_id
|
|
5563
|
+
# 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
5564
|
self.token_code = token_code
|
|
5459
5565
|
|
|
5460
5566
|
def validate(self):
|
|
@@ -5510,6 +5616,7 @@ class SendTokenCodeResponseBody(TeaModel):
|
|
|
5510
5616
|
self,
|
|
5511
5617
|
request_id: str = None,
|
|
5512
5618
|
):
|
|
5619
|
+
# The request ID.
|
|
5513
5620
|
self.request_id = request_id
|
|
5514
5621
|
|
|
5515
5622
|
def validate(self):
|
|
@@ -6192,6 +6299,7 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6192
6299
|
region_id: str = None,
|
|
6193
6300
|
session_id: str = None,
|
|
6194
6301
|
session_token: str = None,
|
|
6302
|
+
uuid: str = None,
|
|
6195
6303
|
):
|
|
6196
6304
|
# The client ID. The system generates a unique ID for each client.
|
|
6197
6305
|
#
|
|
@@ -6218,6 +6326,7 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6218
6326
|
self.session_id = session_id
|
|
6219
6327
|
# The logon token.
|
|
6220
6328
|
self.session_token = session_token
|
|
6329
|
+
self.uuid = uuid
|
|
6221
6330
|
|
|
6222
6331
|
def validate(self):
|
|
6223
6332
|
pass
|
|
@@ -6248,6 +6357,8 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6248
6357
|
result['SessionId'] = self.session_id
|
|
6249
6358
|
if self.session_token is not None:
|
|
6250
6359
|
result['SessionToken'] = self.session_token
|
|
6360
|
+
if self.uuid is not None:
|
|
6361
|
+
result['Uuid'] = self.uuid
|
|
6251
6362
|
return result
|
|
6252
6363
|
|
|
6253
6364
|
def from_map(self, m: dict = None):
|
|
@@ -6272,6 +6383,8 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6272
6383
|
self.session_id = m.get('SessionId')
|
|
6273
6384
|
if m.get('SessionToken') is not None:
|
|
6274
6385
|
self.session_token = m.get('SessionToken')
|
|
6386
|
+
if m.get('Uuid') is not None:
|
|
6387
|
+
self.uuid = m.get('Uuid')
|
|
6275
6388
|
return self
|
|
6276
6389
|
|
|
6277
6390
|
|
|
@@ -6491,16 +6604,33 @@ class UnbindUserDesktopRequest(TeaModel):
|
|
|
6491
6604
|
session_id: str = None,
|
|
6492
6605
|
user_desktop_id: str = None,
|
|
6493
6606
|
):
|
|
6607
|
+
# The client ID.
|
|
6608
|
+
#
|
|
6494
6609
|
# This parameter is required.
|
|
6495
6610
|
self.client_id = client_id
|
|
6611
|
+
# The client type.
|
|
6496
6612
|
self.client_type = client_type
|
|
6613
|
+
# Specifies whether to enable forced unbinding.
|
|
6614
|
+
#
|
|
6615
|
+
# Valid values:
|
|
6616
|
+
#
|
|
6617
|
+
# * true: Even when end users connect to cloud computers, the forced unbinding is still enforced.
|
|
6618
|
+
# * false: Forced unbinding is only enforced when end users are disconnected from cloud computers.
|
|
6497
6619
|
self.force = force
|
|
6620
|
+
# The logon token.
|
|
6621
|
+
#
|
|
6498
6622
|
# This parameter is required.
|
|
6499
6623
|
self.login_token = login_token
|
|
6624
|
+
# The region ID.
|
|
6625
|
+
#
|
|
6500
6626
|
# This parameter is required.
|
|
6501
6627
|
self.region_id = region_id
|
|
6628
|
+
# The session ID.
|
|
6629
|
+
#
|
|
6502
6630
|
# This parameter is required.
|
|
6503
6631
|
self.session_id = session_id
|
|
6632
|
+
# The cloud computer ID.
|
|
6633
|
+
#
|
|
6504
6634
|
# This parameter is required.
|
|
6505
6635
|
self.user_desktop_id = user_desktop_id
|
|
6506
6636
|
|
|
@@ -6553,6 +6683,7 @@ class UnbindUserDesktopResponseBody(TeaModel):
|
|
|
6553
6683
|
self,
|
|
6554
6684
|
request_id: str = None,
|
|
6555
6685
|
):
|
|
6686
|
+
# The request ID.
|
|
6556
6687
|
self.request_id = request_id
|
|
6557
6688
|
|
|
6558
6689
|
def validate(self):
|
{alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.3.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.3
|
|
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.14)
|
|
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=TJ8zbWjjE6DkkbTjlTNH8Zlu06vDWG4MNNNVL--Esf4,21
|
|
2
|
+
alibabacloud_ecd20201002/client.py,sha256=QpzFWjiVW_YLey-qv_o6NVR2l41UyRXSMpJ8Nb69cIk,156704
|
|
3
|
+
alibabacloud_ecd20201002/models.py,sha256=Bncgmklzngl_GeaY9mnEbtkLyleoq-HuA1kkcLgd_fU,241669
|
|
4
|
+
alibabacloud_ecd20201002-1.2.3.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_ecd20201002-1.2.3.dist-info/METADATA,sha256=CiSnFUcf9_VMmLWPbLIMtf-Z1zvmVwh4XWssVJJWCIs,2312
|
|
6
|
+
alibabacloud_ecd20201002-1.2.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_ecd20201002-1.2.3.dist-info/top_level.txt,sha256=StSX710186VDYReoyBW7AC51spfR_S0-5CO0fZyRBCk,25
|
|
8
|
+
alibabacloud_ecd20201002-1.2.3.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.3.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_ecd20201002-1.2.2.dist-info → alibabacloud_ecd20201002-1.2.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|