alibabacloud-ecd20201002 1.2.8__tar.gz → 1.2.9__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.
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/ChangeLog.md +7 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/PKG-INFO +1 -1
- alibabacloud_ecd20201002-1.2.9/alibabacloud_ecd20201002/__init__.py +1 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/alibabacloud_ecd20201002/client.py +4 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/alibabacloud_ecd20201002/models.py +12 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/alibabacloud_ecd20201002.egg-info/PKG-INFO +1 -1
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/setup.py +1 -1
- alibabacloud_ecd20201002-1.2.8/alibabacloud_ecd20201002/__init__.py +0 -1
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/LICENSE +0 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/MANIFEST.in +0 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/README-CN.md +0 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/README.md +0 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/alibabacloud_ecd20201002.egg-info/SOURCES.txt +0 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/alibabacloud_ecd20201002.egg-info/dependency_links.txt +0 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/alibabacloud_ecd20201002.egg-info/requires.txt +0 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/alibabacloud_ecd20201002.egg-info/top_level.txt +0 -0
- {alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/setup.cfg +0 -0
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
2025-09-17 Version: 1.2.8
|
|
2
|
+
- Update API DescribeUserResources: add request parameters QueryDesktopDurationList.
|
|
3
|
+
- Update API DescribeUserResources: add request parameters QueryDesktopTimers.
|
|
4
|
+
- Update API DescribeUserResources: add response parameters Body.MaxResults.
|
|
5
|
+
- Update API DescribeUserResources: add response parameters Body.TotalCount.
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
2025-08-22 Version: 1.2.7
|
|
2
9
|
- Update API GetLoginToken: add request parameters ClientName.
|
|
3
10
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.2.9'
|
{alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/alibabacloud_ecd20201002/client.py
RENAMED
|
@@ -1535,6 +1535,8 @@ class Client(OpenApiClient):
|
|
|
1535
1535
|
"""
|
|
1536
1536
|
UtilClient.validate_model(request)
|
|
1537
1537
|
query = {}
|
|
1538
|
+
if not UtilClient.is_unset(request.access_type):
|
|
1539
|
+
query['AccessType'] = request.access_type
|
|
1538
1540
|
if not UtilClient.is_unset(request.client_id):
|
|
1539
1541
|
query['ClientId'] = request.client_id
|
|
1540
1542
|
if not UtilClient.is_unset(request.client_os):
|
|
@@ -1598,6 +1600,8 @@ class Client(OpenApiClient):
|
|
|
1598
1600
|
"""
|
|
1599
1601
|
UtilClient.validate_model(request)
|
|
1600
1602
|
query = {}
|
|
1603
|
+
if not UtilClient.is_unset(request.access_type):
|
|
1604
|
+
query['AccessType'] = request.access_type
|
|
1601
1605
|
if not UtilClient.is_unset(request.client_id):
|
|
1602
1606
|
query['ClientId'] = request.client_id
|
|
1603
1607
|
if not UtilClient.is_unset(request.client_os):
|
{alibabacloud_ecd20201002-1.2.8 → alibabacloud_ecd20201002-1.2.9}/alibabacloud_ecd20201002/models.py
RENAMED
|
@@ -3762,6 +3762,7 @@ class GetConnectionTicketRequestTag(TeaModel):
|
|
|
3762
3762
|
class GetConnectionTicketRequest(TeaModel):
|
|
3763
3763
|
def __init__(
|
|
3764
3764
|
self,
|
|
3765
|
+
access_type: str = None,
|
|
3765
3766
|
client_id: str = None,
|
|
3766
3767
|
client_os: str = None,
|
|
3767
3768
|
client_type: str = None,
|
|
@@ -3778,6 +3779,7 @@ class GetConnectionTicketRequest(TeaModel):
|
|
|
3778
3779
|
task_id: str = None,
|
|
3779
3780
|
uuid: str = None,
|
|
3780
3781
|
):
|
|
3782
|
+
self.access_type = access_type
|
|
3781
3783
|
# This parameter is required.
|
|
3782
3784
|
self.client_id = client_id
|
|
3783
3785
|
self.client_os = client_os
|
|
@@ -3809,6 +3811,8 @@ class GetConnectionTicketRequest(TeaModel):
|
|
|
3809
3811
|
return _map
|
|
3810
3812
|
|
|
3811
3813
|
result = dict()
|
|
3814
|
+
if self.access_type is not None:
|
|
3815
|
+
result['AccessType'] = self.access_type
|
|
3812
3816
|
if self.client_id is not None:
|
|
3813
3817
|
result['ClientId'] = self.client_id
|
|
3814
3818
|
if self.client_os is not None:
|
|
@@ -3845,6 +3849,8 @@ class GetConnectionTicketRequest(TeaModel):
|
|
|
3845
3849
|
|
|
3846
3850
|
def from_map(self, m: dict = None):
|
|
3847
3851
|
m = m or dict()
|
|
3852
|
+
if m.get('AccessType') is not None:
|
|
3853
|
+
self.access_type = m.get('AccessType')
|
|
3848
3854
|
if m.get('ClientId') is not None:
|
|
3849
3855
|
self.client_id = m.get('ClientId')
|
|
3850
3856
|
if m.get('ClientOS') is not None:
|
|
@@ -3884,6 +3890,7 @@ class GetConnectionTicketRequest(TeaModel):
|
|
|
3884
3890
|
class GetConnectionTicketResponseBody(TeaModel):
|
|
3885
3891
|
def __init__(
|
|
3886
3892
|
self,
|
|
3893
|
+
p_2ptoken: str = None,
|
|
3887
3894
|
request_id: str = None,
|
|
3888
3895
|
task_code: str = None,
|
|
3889
3896
|
task_id: str = None,
|
|
@@ -3891,6 +3898,7 @@ class GetConnectionTicketResponseBody(TeaModel):
|
|
|
3891
3898
|
task_status: str = None,
|
|
3892
3899
|
ticket: str = None,
|
|
3893
3900
|
):
|
|
3901
|
+
self.p_2ptoken = p_2ptoken
|
|
3894
3902
|
self.request_id = request_id
|
|
3895
3903
|
self.task_code = task_code
|
|
3896
3904
|
self.task_id = task_id
|
|
@@ -3907,6 +3915,8 @@ class GetConnectionTicketResponseBody(TeaModel):
|
|
|
3907
3915
|
return _map
|
|
3908
3916
|
|
|
3909
3917
|
result = dict()
|
|
3918
|
+
if self.p_2ptoken is not None:
|
|
3919
|
+
result['P2PToken'] = self.p_2ptoken
|
|
3910
3920
|
if self.request_id is not None:
|
|
3911
3921
|
result['RequestId'] = self.request_id
|
|
3912
3922
|
if self.task_code is not None:
|
|
@@ -3923,6 +3933,8 @@ class GetConnectionTicketResponseBody(TeaModel):
|
|
|
3923
3933
|
|
|
3924
3934
|
def from_map(self, m: dict = None):
|
|
3925
3935
|
m = m or dict()
|
|
3936
|
+
if m.get('P2PToken') is not None:
|
|
3937
|
+
self.p_2ptoken = m.get('P2PToken')
|
|
3926
3938
|
if m.get('RequestId') is not None:
|
|
3927
3939
|
self.request_id = m.get('RequestId')
|
|
3928
3940
|
if m.get('TaskCode') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.2.8'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|