alibabacloud-ecd20201002 1.2.1__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 +320 -628
- alibabacloud_ecd20201002/models.py +149 -0
- {alibabacloud_ecd20201002-1.2.1.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.1.dist-info/RECORD +0 -8
- {alibabacloud_ecd20201002-1.2.1.dist-info → alibabacloud_ecd20201002-1.2.3.dist-info}/LICENSE +0 -0
- {alibabacloud_ecd20201002-1.2.1.dist-info → alibabacloud_ecd20201002-1.2.3.dist-info}/WHEEL +0 -0
- {alibabacloud_ecd20201002-1.2.1.dist-info → alibabacloud_ecd20201002-1.2.3.dist-info}/top_level.txt +0 -0
|
@@ -70,6 +70,7 @@ class ApproveFotaUpdateRequest(TeaModel):
|
|
|
70
70
|
login_token: str = None,
|
|
71
71
|
region_id: str = None,
|
|
72
72
|
session_id: str = None,
|
|
73
|
+
target_status: str = None,
|
|
73
74
|
uuid: str = None,
|
|
74
75
|
):
|
|
75
76
|
# This parameter is required.
|
|
@@ -82,6 +83,7 @@ class ApproveFotaUpdateRequest(TeaModel):
|
|
|
82
83
|
# This parameter is required.
|
|
83
84
|
self.region_id = region_id
|
|
84
85
|
self.session_id = session_id
|
|
86
|
+
self.target_status = target_status
|
|
85
87
|
self.uuid = uuid
|
|
86
88
|
|
|
87
89
|
def validate(self):
|
|
@@ -105,6 +107,8 @@ class ApproveFotaUpdateRequest(TeaModel):
|
|
|
105
107
|
result['RegionId'] = self.region_id
|
|
106
108
|
if self.session_id is not None:
|
|
107
109
|
result['SessionId'] = self.session_id
|
|
110
|
+
if self.target_status is not None:
|
|
111
|
+
result['TargetStatus'] = self.target_status
|
|
108
112
|
if self.uuid is not None:
|
|
109
113
|
result['Uuid'] = self.uuid
|
|
110
114
|
return result
|
|
@@ -123,6 +127,8 @@ class ApproveFotaUpdateRequest(TeaModel):
|
|
|
123
127
|
self.region_id = m.get('RegionId')
|
|
124
128
|
if m.get('SessionId') is not None:
|
|
125
129
|
self.session_id = m.get('SessionId')
|
|
130
|
+
if m.get('TargetStatus') is not None:
|
|
131
|
+
self.target_status = m.get('TargetStatus')
|
|
126
132
|
if m.get('Uuid') is not None:
|
|
127
133
|
self.uuid = m.get('Uuid')
|
|
128
134
|
return self
|
|
@@ -208,20 +214,35 @@ class ChangePasswordRequest(TeaModel):
|
|
|
208
214
|
region_id: str = None,
|
|
209
215
|
session_id: str = None,
|
|
210
216
|
):
|
|
217
|
+
# The client ID. The system generates a unique ID for each client.
|
|
218
|
+
#
|
|
211
219
|
# This parameter is required.
|
|
212
220
|
self.client_id = client_id
|
|
221
|
+
# The user ID.
|
|
222
|
+
#
|
|
213
223
|
# This parameter is required.
|
|
214
224
|
self.end_user_id = end_user_id
|
|
225
|
+
# The logon token.
|
|
226
|
+
#
|
|
215
227
|
# This parameter is required.
|
|
216
228
|
self.login_token = login_token
|
|
229
|
+
# The new password.
|
|
230
|
+
#
|
|
217
231
|
# This parameter is required.
|
|
218
232
|
self.new_password = new_password
|
|
233
|
+
# The office network ID.
|
|
234
|
+
#
|
|
219
235
|
# This parameter is required.
|
|
220
236
|
self.office_site_id = office_site_id
|
|
237
|
+
# The current password.
|
|
238
|
+
#
|
|
221
239
|
# This parameter is required.
|
|
222
240
|
self.old_password = old_password
|
|
241
|
+
# The region ID.
|
|
242
|
+
#
|
|
223
243
|
# This parameter is required.
|
|
224
244
|
self.region_id = region_id
|
|
245
|
+
# The session ID.
|
|
225
246
|
self.session_id = session_id
|
|
226
247
|
|
|
227
248
|
def validate(self):
|
|
@@ -278,7 +299,9 @@ class ChangePasswordResponseBody(TeaModel):
|
|
|
278
299
|
login_token: str = None,
|
|
279
300
|
request_id: str = None,
|
|
280
301
|
):
|
|
302
|
+
# The logon token.
|
|
281
303
|
self.login_token = login_token
|
|
304
|
+
# The request ID.
|
|
282
305
|
self.request_id = request_id
|
|
283
306
|
|
|
284
307
|
def validate(self):
|
|
@@ -483,9 +506,14 @@ class DescribeDirectoriesRequest(TeaModel):
|
|
|
483
506
|
directory_id: List[str] = None,
|
|
484
507
|
region_id: str = None,
|
|
485
508
|
):
|
|
509
|
+
# The client ID. The system generates a unique ID for each client.
|
|
510
|
+
#
|
|
486
511
|
# This parameter is required.
|
|
487
512
|
self.client_id = client_id
|
|
513
|
+
# The directory IDs.
|
|
488
514
|
self.directory_id = directory_id
|
|
515
|
+
# The region ID.
|
|
516
|
+
#
|
|
489
517
|
# This parameter is required.
|
|
490
518
|
self.region_id = region_id
|
|
491
519
|
|
|
@@ -526,10 +554,21 @@ class DescribeDirectoriesResponseBodyDirectories(TeaModel):
|
|
|
526
554
|
provider_id: str = None,
|
|
527
555
|
sso_service_url: str = None,
|
|
528
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.
|
|
529
564
|
self.desktop_access_type = desktop_access_type
|
|
565
|
+
# The directory ID.
|
|
530
566
|
self.directory_id = directory_id
|
|
567
|
+
# The directory type.
|
|
531
568
|
self.directory_type = directory_type
|
|
569
|
+
# The provider ID.
|
|
532
570
|
self.provider_id = provider_id
|
|
571
|
+
# The URL of the SSO service.
|
|
533
572
|
self.sso_service_url = sso_service_url
|
|
534
573
|
|
|
535
574
|
def validate(self):
|
|
@@ -574,7 +613,9 @@ class DescribeDirectoriesResponseBody(TeaModel):
|
|
|
574
613
|
directories: List[DescribeDirectoriesResponseBodyDirectories] = None,
|
|
575
614
|
request_id: str = None,
|
|
576
615
|
):
|
|
616
|
+
# The directories.
|
|
577
617
|
self.directories = directories
|
|
618
|
+
# The request ID.
|
|
578
619
|
self.request_id = request_id
|
|
579
620
|
|
|
580
621
|
def validate(self):
|
|
@@ -658,12 +699,20 @@ class DescribeFingerPrintTemplatesRequest(TeaModel):
|
|
|
658
699
|
region_id: str = None,
|
|
659
700
|
session_id: str = None,
|
|
660
701
|
):
|
|
702
|
+
# The client ID. The system generates a unique ID for each client.
|
|
703
|
+
#
|
|
661
704
|
# This parameter is required.
|
|
662
705
|
self.client_id = client_id
|
|
706
|
+
# The logon token.
|
|
707
|
+
#
|
|
663
708
|
# This parameter is required.
|
|
664
709
|
self.login_token = login_token
|
|
710
|
+
# The region ID
|
|
711
|
+
#
|
|
665
712
|
# This parameter is required.
|
|
666
713
|
self.region_id = region_id
|
|
714
|
+
# The session ID.
|
|
715
|
+
#
|
|
667
716
|
# This parameter is required.
|
|
668
717
|
self.session_id = session_id
|
|
669
718
|
|
|
@@ -710,12 +759,19 @@ class DescribeFingerPrintTemplatesResponseBodyFingerPrintTemplates(TeaModel):
|
|
|
710
759
|
login_time: str = None,
|
|
711
760
|
office_site_id: str = None,
|
|
712
761
|
):
|
|
762
|
+
# The client ID. The system generates a unique ID for each client.
|
|
713
763
|
self.client_id = client_id
|
|
764
|
+
# The time when the template was created.
|
|
714
765
|
self.creation_time = creation_time
|
|
766
|
+
# The description of the template.
|
|
715
767
|
self.description = description
|
|
768
|
+
# The user ID.
|
|
716
769
|
self.end_user_id = end_user_id
|
|
770
|
+
# The index.
|
|
717
771
|
self.index = index
|
|
772
|
+
# The logon time.
|
|
718
773
|
self.login_time = login_time
|
|
774
|
+
# The office network ID.
|
|
719
775
|
self.office_site_id = office_site_id
|
|
720
776
|
|
|
721
777
|
def validate(self):
|
|
@@ -768,7 +824,9 @@ class DescribeFingerPrintTemplatesResponseBody(TeaModel):
|
|
|
768
824
|
finger_print_templates: List[DescribeFingerPrintTemplatesResponseBodyFingerPrintTemplates] = None,
|
|
769
825
|
request_id: str = None,
|
|
770
826
|
):
|
|
827
|
+
# The fingerprint templates.
|
|
771
828
|
self.finger_print_templates = finger_print_templates
|
|
829
|
+
# The request ID.
|
|
772
830
|
self.request_id = request_id
|
|
773
831
|
|
|
774
832
|
def validate(self):
|
|
@@ -1829,8 +1887,11 @@ class DescribeRegionsRequest(TeaModel):
|
|
|
1829
1887
|
client_id: str = None,
|
|
1830
1888
|
region_id: str = None,
|
|
1831
1889
|
):
|
|
1890
|
+
# The client ID. The system generates a unique ID for each client.
|
|
1891
|
+
#
|
|
1832
1892
|
# This parameter is required.
|
|
1833
1893
|
self.client_id = client_id
|
|
1894
|
+
# The region ID.
|
|
1834
1895
|
self.region_id = region_id
|
|
1835
1896
|
|
|
1836
1897
|
def validate(self):
|
|
@@ -1863,7 +1924,9 @@ class DescribeRegionsResponseBodyRegions(TeaModel):
|
|
|
1863
1924
|
region_endpoint: str = None,
|
|
1864
1925
|
region_id: str = None,
|
|
1865
1926
|
):
|
|
1927
|
+
# The region endpoint.
|
|
1866
1928
|
self.region_endpoint = region_endpoint
|
|
1929
|
+
# The region ID.
|
|
1867
1930
|
self.region_id = region_id
|
|
1868
1931
|
|
|
1869
1932
|
def validate(self):
|
|
@@ -1896,7 +1959,9 @@ class DescribeRegionsResponseBody(TeaModel):
|
|
|
1896
1959
|
regions: List[DescribeRegionsResponseBodyRegions] = None,
|
|
1897
1960
|
request_id: str = None,
|
|
1898
1961
|
):
|
|
1962
|
+
# The regions.
|
|
1899
1963
|
self.regions = regions
|
|
1964
|
+
# The request ID.
|
|
1900
1965
|
self.request_id = request_id
|
|
1901
1966
|
|
|
1902
1967
|
def validate(self):
|
|
@@ -3302,16 +3367,28 @@ class EncryptPasswordRequest(TeaModel):
|
|
|
3302
3367
|
region_id: str = None,
|
|
3303
3368
|
session_id: str = None,
|
|
3304
3369
|
):
|
|
3370
|
+
# The ID of the client. The system generates a unique ID for each client.
|
|
3371
|
+
#
|
|
3305
3372
|
# This parameter is required.
|
|
3306
3373
|
self.client_id = client_id
|
|
3374
|
+
# The directory ID.
|
|
3307
3375
|
self.directory_id = directory_id
|
|
3376
|
+
# The logon token.
|
|
3377
|
+
#
|
|
3308
3378
|
# This parameter is required.
|
|
3309
3379
|
self.login_token = login_token
|
|
3380
|
+
# The office network ID.
|
|
3310
3381
|
self.office_site_id = office_site_id
|
|
3382
|
+
# The password that you want to encrypt.
|
|
3383
|
+
#
|
|
3311
3384
|
# This parameter is required.
|
|
3312
3385
|
self.password = password
|
|
3386
|
+
# The region ID.
|
|
3387
|
+
#
|
|
3313
3388
|
# This parameter is required.
|
|
3314
3389
|
self.region_id = region_id
|
|
3390
|
+
# The session ID.
|
|
3391
|
+
#
|
|
3315
3392
|
# This parameter is required.
|
|
3316
3393
|
self.session_id = session_id
|
|
3317
3394
|
|
|
@@ -3365,7 +3442,9 @@ class EncryptPasswordResponseBody(TeaModel):
|
|
|
3365
3442
|
encrypted_password: str = None,
|
|
3366
3443
|
request_id: str = None,
|
|
3367
3444
|
):
|
|
3445
|
+
# The encrypted password.
|
|
3368
3446
|
self.encrypted_password = encrypted_password
|
|
3447
|
+
# The request ID.
|
|
3369
3448
|
self.request_id = request_id
|
|
3370
3449
|
|
|
3371
3450
|
def validate(self):
|
|
@@ -4612,6 +4691,7 @@ class RebootDesktopsRequest(TeaModel):
|
|
|
4612
4691
|
client_version: str = None,
|
|
4613
4692
|
desktop_id: List[str] = None,
|
|
4614
4693
|
login_token: str = None,
|
|
4694
|
+
os_update: bool = None,
|
|
4615
4695
|
region_id: str = None,
|
|
4616
4696
|
session_id: str = None,
|
|
4617
4697
|
session_token: str = None,
|
|
@@ -4633,6 +4713,7 @@ class RebootDesktopsRequest(TeaModel):
|
|
|
4633
4713
|
self.desktop_id = desktop_id
|
|
4634
4714
|
# The logon token.
|
|
4635
4715
|
self.login_token = login_token
|
|
4716
|
+
self.os_update = os_update
|
|
4636
4717
|
# The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the regions supported by WUYING Workspace.
|
|
4637
4718
|
#
|
|
4638
4719
|
# This parameter is required.
|
|
@@ -4665,6 +4746,8 @@ class RebootDesktopsRequest(TeaModel):
|
|
|
4665
4746
|
result['DesktopId'] = self.desktop_id
|
|
4666
4747
|
if self.login_token is not None:
|
|
4667
4748
|
result['LoginToken'] = self.login_token
|
|
4749
|
+
if self.os_update is not None:
|
|
4750
|
+
result['OsUpdate'] = self.os_update
|
|
4668
4751
|
if self.region_id is not None:
|
|
4669
4752
|
result['RegionId'] = self.region_id
|
|
4670
4753
|
if self.session_id is not None:
|
|
@@ -4689,6 +4772,8 @@ class RebootDesktopsRequest(TeaModel):
|
|
|
4689
4772
|
self.desktop_id = m.get('DesktopId')
|
|
4690
4773
|
if m.get('LoginToken') is not None:
|
|
4691
4774
|
self.login_token = m.get('LoginToken')
|
|
4775
|
+
if m.get('OsUpdate') is not None:
|
|
4776
|
+
self.os_update = m.get('OsUpdate')
|
|
4692
4777
|
if m.get('RegionId') is not None:
|
|
4693
4778
|
self.region_id = m.get('RegionId')
|
|
4694
4779
|
if m.get('SessionId') is not None:
|
|
@@ -5164,16 +5249,27 @@ class ResetPasswordRequest(TeaModel):
|
|
|
5164
5249
|
region_id: str = None,
|
|
5165
5250
|
phone: str = None,
|
|
5166
5251
|
):
|
|
5252
|
+
# The client ID. The system generates a unique ID for each client.
|
|
5253
|
+
#
|
|
5167
5254
|
# This parameter is required.
|
|
5168
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).
|
|
5169
5257
|
self.client_token = client_token
|
|
5258
|
+
# The email address of the user.
|
|
5170
5259
|
self.email = email
|
|
5260
|
+
# The user ID.
|
|
5261
|
+
#
|
|
5171
5262
|
# This parameter is required.
|
|
5172
5263
|
self.end_user_id = end_user_id
|
|
5264
|
+
# The office network ID.
|
|
5265
|
+
#
|
|
5173
5266
|
# This parameter is required.
|
|
5174
5267
|
self.office_site_id = office_site_id
|
|
5268
|
+
# The region ID.
|
|
5269
|
+
#
|
|
5175
5270
|
# This parameter is required.
|
|
5176
5271
|
self.region_id = region_id
|
|
5272
|
+
# The phone number of the user.
|
|
5177
5273
|
self.phone = phone
|
|
5178
5274
|
|
|
5179
5275
|
def validate(self):
|
|
@@ -5225,6 +5321,7 @@ class ResetPasswordResponseBody(TeaModel):
|
|
|
5225
5321
|
self,
|
|
5226
5322
|
request_id: str = None,
|
|
5227
5323
|
):
|
|
5324
|
+
# The request ID.
|
|
5228
5325
|
self.request_id = request_id
|
|
5229
5326
|
|
|
5230
5327
|
def validate(self):
|
|
@@ -5299,16 +5396,27 @@ class ResetSnapshotRequest(TeaModel):
|
|
|
5299
5396
|
snapshot_id: str = None,
|
|
5300
5397
|
stop_desktop: bool = None,
|
|
5301
5398
|
):
|
|
5399
|
+
# The client ID. The system generates a unique ID for each client.
|
|
5400
|
+
#
|
|
5302
5401
|
# This parameter is required.
|
|
5303
5402
|
self.client_id = client_id
|
|
5403
|
+
# The cloud computer ID.
|
|
5304
5404
|
self.desktop_id = desktop_id
|
|
5405
|
+
# The logon token.
|
|
5406
|
+
#
|
|
5305
5407
|
# This parameter is required.
|
|
5306
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
|
+
#
|
|
5307
5411
|
# This parameter is required.
|
|
5308
5412
|
self.region_id = region_id
|
|
5413
|
+
# The session ID.
|
|
5309
5414
|
self.session_id = session_id
|
|
5415
|
+
# The snapshot ID.
|
|
5416
|
+
#
|
|
5310
5417
|
# This parameter is required.
|
|
5311
5418
|
self.snapshot_id = snapshot_id
|
|
5419
|
+
# Specifies whether to stop the cloud computer.
|
|
5312
5420
|
self.stop_desktop = stop_desktop
|
|
5313
5421
|
|
|
5314
5422
|
def validate(self):
|
|
@@ -5360,6 +5468,7 @@ class ResetSnapshotResponseBody(TeaModel):
|
|
|
5360
5468
|
self,
|
|
5361
5469
|
request_id: str = None,
|
|
5362
5470
|
):
|
|
5471
|
+
# The request ID.
|
|
5363
5472
|
self.request_id = request_id
|
|
5364
5473
|
|
|
5365
5474
|
def validate(self):
|
|
@@ -5435,14 +5544,23 @@ class SendTokenCodeRequest(TeaModel):
|
|
|
5435
5544
|
session_id: str = None,
|
|
5436
5545
|
token_code: str = None,
|
|
5437
5546
|
):
|
|
5547
|
+
# The client ID. The system generates a unique ID for each client.
|
|
5548
|
+
#
|
|
5438
5549
|
# This parameter is required.
|
|
5439
5550
|
self.client_id = client_id
|
|
5551
|
+
# The operating system on which the client runs.
|
|
5440
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.
|
|
5441
5554
|
self.client_version = client_version
|
|
5555
|
+
# The username of the account.
|
|
5442
5556
|
self.end_user_id = end_user_id
|
|
5557
|
+
# The logon token.
|
|
5443
5558
|
self.login_token = login_token
|
|
5559
|
+
# The office network ID.
|
|
5444
5560
|
self.office_site_id = office_site_id
|
|
5561
|
+
# The session ID.
|
|
5445
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`.
|
|
5446
5564
|
self.token_code = token_code
|
|
5447
5565
|
|
|
5448
5566
|
def validate(self):
|
|
@@ -5498,6 +5616,7 @@ class SendTokenCodeResponseBody(TeaModel):
|
|
|
5498
5616
|
self,
|
|
5499
5617
|
request_id: str = None,
|
|
5500
5618
|
):
|
|
5619
|
+
# The request ID.
|
|
5501
5620
|
self.request_id = request_id
|
|
5502
5621
|
|
|
5503
5622
|
def validate(self):
|
|
@@ -6176,9 +6295,11 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6176
6295
|
client_version: str = None,
|
|
6177
6296
|
desktop_id: List[str] = None,
|
|
6178
6297
|
login_token: str = None,
|
|
6298
|
+
os_update: bool = None,
|
|
6179
6299
|
region_id: str = None,
|
|
6180
6300
|
session_id: str = None,
|
|
6181
6301
|
session_token: str = None,
|
|
6302
|
+
uuid: str = None,
|
|
6182
6303
|
):
|
|
6183
6304
|
# The client ID. The system generates a unique ID for each client.
|
|
6184
6305
|
#
|
|
@@ -6196,6 +6317,7 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6196
6317
|
self.desktop_id = desktop_id
|
|
6197
6318
|
# The logon token.
|
|
6198
6319
|
self.login_token = login_token
|
|
6320
|
+
self.os_update = os_update
|
|
6199
6321
|
# The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the regions supported by WUYING Workspace.
|
|
6200
6322
|
#
|
|
6201
6323
|
# This parameter is required.
|
|
@@ -6204,6 +6326,7 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6204
6326
|
self.session_id = session_id
|
|
6205
6327
|
# The logon token.
|
|
6206
6328
|
self.session_token = session_token
|
|
6329
|
+
self.uuid = uuid
|
|
6207
6330
|
|
|
6208
6331
|
def validate(self):
|
|
6209
6332
|
pass
|
|
@@ -6226,12 +6349,16 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6226
6349
|
result['DesktopId'] = self.desktop_id
|
|
6227
6350
|
if self.login_token is not None:
|
|
6228
6351
|
result['LoginToken'] = self.login_token
|
|
6352
|
+
if self.os_update is not None:
|
|
6353
|
+
result['OsUpdate'] = self.os_update
|
|
6229
6354
|
if self.region_id is not None:
|
|
6230
6355
|
result['RegionId'] = self.region_id
|
|
6231
6356
|
if self.session_id is not None:
|
|
6232
6357
|
result['SessionId'] = self.session_id
|
|
6233
6358
|
if self.session_token is not None:
|
|
6234
6359
|
result['SessionToken'] = self.session_token
|
|
6360
|
+
if self.uuid is not None:
|
|
6361
|
+
result['Uuid'] = self.uuid
|
|
6235
6362
|
return result
|
|
6236
6363
|
|
|
6237
6364
|
def from_map(self, m: dict = None):
|
|
@@ -6248,12 +6375,16 @@ class StopDesktopsRequest(TeaModel):
|
|
|
6248
6375
|
self.desktop_id = m.get('DesktopId')
|
|
6249
6376
|
if m.get('LoginToken') is not None:
|
|
6250
6377
|
self.login_token = m.get('LoginToken')
|
|
6378
|
+
if m.get('OsUpdate') is not None:
|
|
6379
|
+
self.os_update = m.get('OsUpdate')
|
|
6251
6380
|
if m.get('RegionId') is not None:
|
|
6252
6381
|
self.region_id = m.get('RegionId')
|
|
6253
6382
|
if m.get('SessionId') is not None:
|
|
6254
6383
|
self.session_id = m.get('SessionId')
|
|
6255
6384
|
if m.get('SessionToken') is not None:
|
|
6256
6385
|
self.session_token = m.get('SessionToken')
|
|
6386
|
+
if m.get('Uuid') is not None:
|
|
6387
|
+
self.uuid = m.get('Uuid')
|
|
6257
6388
|
return self
|
|
6258
6389
|
|
|
6259
6390
|
|
|
@@ -6473,16 +6604,33 @@ class UnbindUserDesktopRequest(TeaModel):
|
|
|
6473
6604
|
session_id: str = None,
|
|
6474
6605
|
user_desktop_id: str = None,
|
|
6475
6606
|
):
|
|
6607
|
+
# The client ID.
|
|
6608
|
+
#
|
|
6476
6609
|
# This parameter is required.
|
|
6477
6610
|
self.client_id = client_id
|
|
6611
|
+
# The client type.
|
|
6478
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.
|
|
6479
6619
|
self.force = force
|
|
6620
|
+
# The logon token.
|
|
6621
|
+
#
|
|
6480
6622
|
# This parameter is required.
|
|
6481
6623
|
self.login_token = login_token
|
|
6624
|
+
# The region ID.
|
|
6625
|
+
#
|
|
6482
6626
|
# This parameter is required.
|
|
6483
6627
|
self.region_id = region_id
|
|
6628
|
+
# The session ID.
|
|
6629
|
+
#
|
|
6484
6630
|
# This parameter is required.
|
|
6485
6631
|
self.session_id = session_id
|
|
6632
|
+
# The cloud computer ID.
|
|
6633
|
+
#
|
|
6486
6634
|
# This parameter is required.
|
|
6487
6635
|
self.user_desktop_id = user_desktop_id
|
|
6488
6636
|
|
|
@@ -6535,6 +6683,7 @@ class UnbindUserDesktopResponseBody(TeaModel):
|
|
|
6535
6683
|
self,
|
|
6536
6684
|
request_id: str = None,
|
|
6537
6685
|
):
|
|
6686
|
+
# The request ID.
|
|
6538
6687
|
self.request_id = request_id
|
|
6539
6688
|
|
|
6540
6689
|
def validate(self):
|
{alibabacloud_ecd20201002-1.2.1.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=VvDq5py76uDFeq6tv3EFMgTHX4rtDyt6nw0tPm3Wrkk,21
|
|
2
|
-
alibabacloud_ecd20201002/client.py,sha256=6QIKL3pS-pRSIw_LJJrjDxYWVRpUni2w8Ln885J6oRE,174388
|
|
3
|
-
alibabacloud_ecd20201002/models.py,sha256=pO4TASTxEqOZti5dTSZ6pfIjQC4poPOMAm3ef1RVdX4,235955
|
|
4
|
-
alibabacloud_ecd20201002-1.2.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_ecd20201002-1.2.1.dist-info/METADATA,sha256=PHkT-eEcDCkxicmM9L7R5B6Uxbj4FzYzwuky8GRRzTg,2312
|
|
6
|
-
alibabacloud_ecd20201002-1.2.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_ecd20201002-1.2.1.dist-info/top_level.txt,sha256=StSX710186VDYReoyBW7AC51spfR_S0-5CO0fZyRBCk,25
|
|
8
|
-
alibabacloud_ecd20201002-1.2.1.dist-info/RECORD,,
|
{alibabacloud_ecd20201002-1.2.1.dist-info → alibabacloud_ecd20201002-1.2.3.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_ecd20201002-1.2.1.dist-info → alibabacloud_ecd20201002-1.2.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|