alibabacloud-ecd20201002 1.1.4__tar.gz → 1.1.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/ChangeLog.md +6 -0
  2. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/PKG-INFO +1 -1
  3. alibabacloud_ecd20201002-1.1.5/alibabacloud_ecd20201002/__init__.py +1 -0
  4. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/alibabacloud_ecd20201002/client.py +4 -0
  5. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/alibabacloud_ecd20201002/models.py +48 -1
  6. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/alibabacloud_ecd20201002.egg-info/PKG-INFO +1 -1
  7. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/setup.py +1 -1
  8. alibabacloud_ecd20201002-1.1.4/alibabacloud_ecd20201002/__init__.py +0 -1
  9. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/LICENSE +0 -0
  10. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/MANIFEST.in +0 -0
  11. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/README-CN.md +0 -0
  12. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/README.md +0 -0
  13. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/alibabacloud_ecd20201002.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/alibabacloud_ecd20201002.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/alibabacloud_ecd20201002.egg-info/requires.txt +0 -0
  16. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/alibabacloud_ecd20201002.egg-info/top_level.txt +0 -0
  17. {alibabacloud_ecd20201002-1.1.4 → alibabacloud_ecd20201002-1.1.5}/setup.cfg +0 -0
@@ -1,3 +1,9 @@
1
+ 2024-11-09 Version: 1.1.4
2
+ - Update API DescribeGlobalDesktops: add param Language.
3
+ - Update API DescribeGlobalDesktops: update response param.
4
+ - Update API ResetSnapshot: add param DesktopId.
5
+
6
+
1
7
  2024-08-13 Version: 1.1.3
2
8
  - Update API DescribeGlobalDesktops: update response param.
3
9
  - Update API StartRecordContent: update response param.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_ecd20201002
3
- Version: 1.1.4
3
+ Version: 1.1.5
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
@@ -0,0 +1 @@
1
+ __version__ = '1.1.5'
@@ -1318,6 +1318,8 @@ class Client(OpenApiClient):
1318
1318
  query['ResourceOwnerId'] = request.resource_owner_id
1319
1319
  if not UtilClient.is_unset(request.session_id):
1320
1320
  query['SessionId'] = request.session_id
1321
+ if not UtilClient.is_unset(request.tag):
1322
+ query['Tag'] = request.tag
1321
1323
  if not UtilClient.is_unset(request.task_id):
1322
1324
  query['TaskId'] = request.task_id
1323
1325
  if not UtilClient.is_unset(request.uuid):
@@ -1377,6 +1379,8 @@ class Client(OpenApiClient):
1377
1379
  query['ResourceOwnerId'] = request.resource_owner_id
1378
1380
  if not UtilClient.is_unset(request.session_id):
1379
1381
  query['SessionId'] = request.session_id
1382
+ if not UtilClient.is_unset(request.tag):
1383
+ query['Tag'] = request.tag
1380
1384
  if not UtilClient.is_unset(request.task_id):
1381
1385
  query['TaskId'] = request.task_id
1382
1386
  if not UtilClient.is_unset(request.uuid):
@@ -2545,6 +2545,39 @@ class GetCloudDriveServiceMountTokenResponse(TeaModel):
2545
2545
  return self
2546
2546
 
2547
2547
 
2548
+ class GetConnectionTicketRequestTag(TeaModel):
2549
+ def __init__(
2550
+ self,
2551
+ key: str = None,
2552
+ value: str = None,
2553
+ ):
2554
+ self.key = key
2555
+ self.value = value
2556
+
2557
+ def validate(self):
2558
+ pass
2559
+
2560
+ def to_map(self):
2561
+ _map = super().to_map()
2562
+ if _map is not None:
2563
+ return _map
2564
+
2565
+ result = dict()
2566
+ if self.key is not None:
2567
+ result['Key'] = self.key
2568
+ if self.value is not None:
2569
+ result['Value'] = self.value
2570
+ return result
2571
+
2572
+ def from_map(self, m: dict = None):
2573
+ m = m or dict()
2574
+ if m.get('Key') is not None:
2575
+ self.key = m.get('Key')
2576
+ if m.get('Value') is not None:
2577
+ self.value = m.get('Value')
2578
+ return self
2579
+
2580
+
2548
2581
  class GetConnectionTicketRequest(TeaModel):
2549
2582
  def __init__(
2550
2583
  self,
@@ -2560,6 +2593,7 @@ class GetConnectionTicketRequest(TeaModel):
2560
2593
  resource_owner_account: str = None,
2561
2594
  resource_owner_id: int = None,
2562
2595
  session_id: str = None,
2596
+ tag: List[GetConnectionTicketRequestTag] = None,
2563
2597
  task_id: str = None,
2564
2598
  uuid: str = None,
2565
2599
  ):
@@ -2578,11 +2612,15 @@ class GetConnectionTicketRequest(TeaModel):
2578
2612
  self.resource_owner_account = resource_owner_account
2579
2613
  self.resource_owner_id = resource_owner_id
2580
2614
  self.session_id = session_id
2615
+ self.tag = tag
2581
2616
  self.task_id = task_id
2582
2617
  self.uuid = uuid
2583
2618
 
2584
2619
  def validate(self):
2585
- pass
2620
+ if self.tag:
2621
+ for k in self.tag:
2622
+ if k:
2623
+ k.validate()
2586
2624
 
2587
2625
  def to_map(self):
2588
2626
  _map = super().to_map()
@@ -2614,6 +2652,10 @@ class GetConnectionTicketRequest(TeaModel):
2614
2652
  result['ResourceOwnerId'] = self.resource_owner_id
2615
2653
  if self.session_id is not None:
2616
2654
  result['SessionId'] = self.session_id
2655
+ result['Tag'] = []
2656
+ if self.tag is not None:
2657
+ for k in self.tag:
2658
+ result['Tag'].append(k.to_map() if k else None)
2617
2659
  if self.task_id is not None:
2618
2660
  result['TaskId'] = self.task_id
2619
2661
  if self.uuid is not None:
@@ -2646,6 +2688,11 @@ class GetConnectionTicketRequest(TeaModel):
2646
2688
  self.resource_owner_id = m.get('ResourceOwnerId')
2647
2689
  if m.get('SessionId') is not None:
2648
2690
  self.session_id = m.get('SessionId')
2691
+ self.tag = []
2692
+ if m.get('Tag') is not None:
2693
+ for k in m.get('Tag'):
2694
+ temp_model = GetConnectionTicketRequestTag()
2695
+ self.tag.append(temp_model.from_map(k))
2649
2696
  if m.get('TaskId') is not None:
2650
2697
  self.task_id = m.get('TaskId')
2651
2698
  if m.get('Uuid') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-ecd20201002
3
- Version: 1.1.4
3
+ Version: 1.1.5
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
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_ecd20201002.
26
26
 
27
- Created on 09/11/2024
27
+ Created on 24/11/2024
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '1.1.4'