alibabacloud-ecd20201002 1.2.3__tar.gz → 1.2.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.2.3 → alibabacloud_ecd20201002-1.2.5}/ChangeLog.md +8 -0
  2. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/PKG-INFO +1 -1
  3. alibabacloud_ecd20201002-1.2.5/alibabacloud_ecd20201002/__init__.py +1 -0
  4. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002/models.py +12 -0
  5. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/requires.txt +1 -1
  7. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/setup.py +2 -2
  8. alibabacloud_ecd20201002-1.2.3/alibabacloud_ecd20201002/__init__.py +0 -1
  9. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/LICENSE +0 -0
  10. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/MANIFEST.in +0 -0
  11. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/README-CN.md +0 -0
  12. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/README.md +0 -0
  13. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002/client.py +0 -0
  14. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/SOURCES.txt +0 -0
  15. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/dependency_links.txt +0 -0
  16. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/alibabacloud_ecd20201002.egg-info/top_level.txt +0 -0
  17. {alibabacloud_ecd20201002-1.2.3 → alibabacloud_ecd20201002-1.2.5}/setup.cfg +0 -0
@@ -1,3 +1,11 @@
1
+ 2025-05-07 Version: 1.2.4
2
+ - Update API DescribeUserResources: add response parameters Body.Resources.$.Sessions.$.NickName.
3
+
4
+
5
+ 2025-04-19 Version: 1.2.3
6
+ - Update API StopDesktops: add request parameters Uuid.
7
+
8
+
1
9
  2025-03-18 Version: 1.2.2
2
10
  - Update API ApproveFotaUpdate: add param TargetStatus.
3
11
  - Update API RebootDesktops: add param OsUpdate.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_ecd20201002
3
- Version: 1.2.3
3
+ Version: 1.2.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.2.5'
@@ -2852,10 +2852,12 @@ class DescribeUserResourcesResponseBodyResourcesOsUpdate(TeaModel):
2852
2852
  class DescribeUserResourcesResponseBodyResourcesSessions(TeaModel):
2853
2853
  def __init__(
2854
2854
  self,
2855
+ nick_name: str = None,
2855
2856
  resource_session_start_time: str = None,
2856
2857
  user_id: str = None,
2857
2858
  user_principal_name: str = None,
2858
2859
  ):
2860
+ self.nick_name = nick_name
2859
2861
  self.resource_session_start_time = resource_session_start_time
2860
2862
  self.user_id = user_id
2861
2863
  self.user_principal_name = user_principal_name
@@ -2869,6 +2871,8 @@ class DescribeUserResourcesResponseBodyResourcesSessions(TeaModel):
2869
2871
  return _map
2870
2872
 
2871
2873
  result = dict()
2874
+ if self.nick_name is not None:
2875
+ result['NickName'] = self.nick_name
2872
2876
  if self.resource_session_start_time is not None:
2873
2877
  result['ResourceSessionStartTime'] = self.resource_session_start_time
2874
2878
  if self.user_id is not None:
@@ -2879,6 +2883,8 @@ class DescribeUserResourcesResponseBodyResourcesSessions(TeaModel):
2879
2883
 
2880
2884
  def from_map(self, m: dict = None):
2881
2885
  m = m or dict()
2886
+ if m.get('NickName') is not None:
2887
+ self.nick_name = m.get('NickName')
2882
2888
  if m.get('ResourceSessionStartTime') is not None:
2883
2889
  self.resource_session_start_time = m.get('ResourceSessionStartTime')
2884
2890
  if m.get('UserId') is not None:
@@ -4220,6 +4226,7 @@ class GetLoginTokenResponseBody(TeaModel):
4220
4226
  label: str = None,
4221
4227
  login_token: str = None,
4222
4228
  next_stage: str = None,
4229
+ nick_name: str = None,
4223
4230
  password_strategy: GetLoginTokenResponseBodyPasswordStrategy = None,
4224
4231
  phone: str = None,
4225
4232
  props: Dict[str, str] = None,
@@ -4251,6 +4258,7 @@ class GetLoginTokenResponseBody(TeaModel):
4251
4258
  #
4252
4259
  # > For more information about the authentication stages, see the `CurrentStage` parameter.
4253
4260
  self.next_stage = next_stage
4261
+ self.nick_name = nick_name
4254
4262
  # > This is a parameter only for internal use.
4255
4263
  self.password_strategy = password_strategy
4256
4264
  # Enter the mobile number of the convenience user. For an AD user, null is returned.
@@ -4306,6 +4314,8 @@ class GetLoginTokenResponseBody(TeaModel):
4306
4314
  result['LoginToken'] = self.login_token
4307
4315
  if self.next_stage is not None:
4308
4316
  result['NextStage'] = self.next_stage
4317
+ if self.nick_name is not None:
4318
+ result['NickName'] = self.nick_name
4309
4319
  if self.password_strategy is not None:
4310
4320
  result['PasswordStrategy'] = self.password_strategy.to_map()
4311
4321
  if self.phone is not None:
@@ -4346,6 +4356,8 @@ class GetLoginTokenResponseBody(TeaModel):
4346
4356
  self.login_token = m.get('LoginToken')
4347
4357
  if m.get('NextStage') is not None:
4348
4358
  self.next_stage = m.get('NextStage')
4359
+ if m.get('NickName') is not None:
4360
+ self.nick_name = m.get('NickName')
4349
4361
  if m.get('PasswordStrategy') is not None:
4350
4362
  temp_model = GetLoginTokenResponseBodyPasswordStrategy()
4351
4363
  self.password_strategy = temp_model.from_map(m['PasswordStrategy'])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-ecd20201002
3
- Version: 1.2.3
3
+ Version: 1.2.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
@@ -1,4 +1,4 @@
1
1
  alibabacloud_endpoint_util<1.0.0,>=0.0.3
2
2
  alibabacloud_openapi_util<1.0.0,>=0.2.2
3
- alibabacloud_tea_openapi<1.0.0,>=0.3.14
3
+ alibabacloud_tea_openapi<1.0.0,>=0.3.15
4
4
  alibabacloud_tea_util<1.0.0,>=0.3.13
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_ecd20201002.
26
26
 
27
- Created on 19/04/2025
27
+ Created on 08/05/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -38,7 +38,7 @@ URL = "https://github.com/aliyun/alibabacloud-python-sdk"
38
38
  VERSION = __import__(PACKAGE).__version__
39
39
  REQUIRES = [
40
40
  "alibabacloud_tea_util>=0.3.13, <1.0.0",
41
- "alibabacloud_tea_openapi>=0.3.14, <1.0.0",
41
+ "alibabacloud_tea_openapi>=0.3.15, <1.0.0",
42
42
  "alibabacloud_openapi_util>=0.2.2, <1.0.0",
43
43
  "alibabacloud_endpoint_util>=0.0.3, <1.0.0"
44
44
  ]
@@ -1 +0,0 @@
1
- __version__ = '1.2.3'