tencentcloud-sdk-python-gs 3.0.1409__py2.py3-none-any.whl → 3.0.1416__py2.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.

Potentially problematic release.


This version of tencentcloud-sdk-python-gs might be problematic. Click here for more details.

tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1409'
17
+ __version__ = '3.0.1416'
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -41,6 +41,8 @@ class AndroidApp(AbstractModel):
41
41
  :type AppMode: str
42
42
  :param _UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
43
43
  :type UpdateState: str
44
+ :param _PackageName: 安卓应用包名
45
+ :type PackageName: str
44
46
  """
45
47
  self._AndroidAppId = None
46
48
  self._Name = None
@@ -50,6 +52,7 @@ class AndroidApp(AbstractModel):
50
52
  self._UserId = None
51
53
  self._AppMode = None
52
54
  self._UpdateState = None
55
+ self._PackageName = None
53
56
 
54
57
  @property
55
58
  def AndroidAppId(self):
@@ -139,6 +142,17 @@ class AndroidApp(AbstractModel):
139
142
  def UpdateState(self, UpdateState):
140
143
  self._UpdateState = UpdateState
141
144
 
145
+ @property
146
+ def PackageName(self):
147
+ """安卓应用包名
148
+ :rtype: str
149
+ """
150
+ return self._PackageName
151
+
152
+ @PackageName.setter
153
+ def PackageName(self, PackageName):
154
+ self._PackageName = PackageName
155
+
142
156
 
143
157
  def _deserialize(self, params):
144
158
  self._AndroidAppId = params.get("AndroidAppId")
@@ -154,6 +168,7 @@ class AndroidApp(AbstractModel):
154
168
  self._UserId = params.get("UserId")
155
169
  self._AppMode = params.get("AppMode")
156
170
  self._UpdateState = params.get("UpdateState")
171
+ self._PackageName = params.get("PackageName")
157
172
  memeber_set = set(params.keys())
158
173
  for name, value in vars(self).items():
159
174
  property_name = name[1:]
@@ -236,8 +251,12 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
236
251
  :type UninstallCommand: str
237
252
  :param _CleanupMode: 应用资源清理模式(实例安装应用所用资源),取值:CLEANUP_ON_UNINSTALL(默认值),卸载 App 时清理;CLEANUP_AFTER_INSTALL,安装 App 后立即清理。普通应用只有 CLEANUP_AFTER_INSTALL 模式。
238
253
  :type CleanupMode: str
239
- :param _AndroidAppVersionName: 安卓应用版本名称
254
+ :param _AndroidAppVersionName: 安卓应用版本名称(版本描述、备注)
240
255
  :type AndroidAppVersionName: str
256
+ :param _Activity: 安卓应用启动页
257
+ :type Activity: str
258
+ :param _VersionName: 应用版本号(Version Name)
259
+ :type VersionName: str
241
260
  """
242
261
  self._AndroidAppVersion = None
243
262
  self._State = None
@@ -246,6 +265,8 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
246
265
  self._UninstallCommand = None
247
266
  self._CleanupMode = None
248
267
  self._AndroidAppVersionName = None
268
+ self._Activity = None
269
+ self._VersionName = None
249
270
 
250
271
  @property
251
272
  def AndroidAppVersion(self):
@@ -317,7 +338,7 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
317
338
 
318
339
  @property
319
340
  def AndroidAppVersionName(self):
320
- """安卓应用版本名称
341
+ """安卓应用版本名称(版本描述、备注)
321
342
  :rtype: str
322
343
  """
323
344
  return self._AndroidAppVersionName
@@ -326,6 +347,28 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
326
347
  def AndroidAppVersionName(self, AndroidAppVersionName):
327
348
  self._AndroidAppVersionName = AndroidAppVersionName
328
349
 
350
+ @property
351
+ def Activity(self):
352
+ """安卓应用启动页
353
+ :rtype: str
354
+ """
355
+ return self._Activity
356
+
357
+ @Activity.setter
358
+ def Activity(self, Activity):
359
+ self._Activity = Activity
360
+
361
+ @property
362
+ def VersionName(self):
363
+ """应用版本号(Version Name)
364
+ :rtype: str
365
+ """
366
+ return self._VersionName
367
+
368
+ @VersionName.setter
369
+ def VersionName(self, VersionName):
370
+ self._VersionName = VersionName
371
+
329
372
 
330
373
  def _deserialize(self, params):
331
374
  self._AndroidAppVersion = params.get("AndroidAppVersion")
@@ -335,6 +378,8 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
335
378
  self._UninstallCommand = params.get("UninstallCommand")
336
379
  self._CleanupMode = params.get("CleanupMode")
337
380
  self._AndroidAppVersionName = params.get("AndroidAppVersionName")
381
+ self._Activity = params.get("Activity")
382
+ self._VersionName = params.get("VersionName")
338
383
  memeber_set = set(params.keys())
339
384
  for name, value in vars(self).items():
340
385
  property_name = name[1:]
@@ -4891,10 +4936,13 @@ class DescribeAndroidInstancesByAppsRequest(AbstractModel):
4891
4936
  :type Limit: int
4892
4937
  :param _AndroidAppIds: 应用 ID 列表。通过应用 ID 做集合查询
4893
4938
  :type AndroidAppIds: list of str
4939
+ :param _Filters: 字段过滤器。Filter 的 Name 有以下值: AndroidInstanceId:实例 ID
4940
+ :type Filters: list of Filter
4894
4941
  """
4895
4942
  self._Offset = None
4896
4943
  self._Limit = None
4897
4944
  self._AndroidAppIds = None
4945
+ self._Filters = None
4898
4946
 
4899
4947
  @property
4900
4948
  def Offset(self):
@@ -4929,11 +4977,28 @@ class DescribeAndroidInstancesByAppsRequest(AbstractModel):
4929
4977
  def AndroidAppIds(self, AndroidAppIds):
4930
4978
  self._AndroidAppIds = AndroidAppIds
4931
4979
 
4980
+ @property
4981
+ def Filters(self):
4982
+ """字段过滤器。Filter 的 Name 有以下值: AndroidInstanceId:实例 ID
4983
+ :rtype: list of Filter
4984
+ """
4985
+ return self._Filters
4986
+
4987
+ @Filters.setter
4988
+ def Filters(self, Filters):
4989
+ self._Filters = Filters
4990
+
4932
4991
 
4933
4992
  def _deserialize(self, params):
4934
4993
  self._Offset = params.get("Offset")
4935
4994
  self._Limit = params.get("Limit")
4936
4995
  self._AndroidAppIds = params.get("AndroidAppIds")
4996
+ if params.get("Filters") is not None:
4997
+ self._Filters = []
4998
+ for item in params.get("Filters"):
4999
+ obj = Filter()
5000
+ obj._deserialize(item)
5001
+ self._Filters.append(obj)
4937
5002
  memeber_set = set(params.keys())
4938
5003
  for name, value in vars(self).items():
4939
5004
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1409
3
+ Version: 3.0.1416
4
4
  Summary: Tencent Cloud Gs SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common (==3.0.1409)
18
+ Requires-Dist: tencentcloud-sdk-python-common (==3.0.1416)
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,10 @@
1
+ tencentcloud/__init__.py,sha256=-3wPg6USRRdvHHmZ1D-kvX873GrUeYC1aT5yHZA0Mk0,631
2
+ tencentcloud/gs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ tencentcloud/gs/v20191118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ tencentcloud/gs/v20191118/errorcodes.py,sha256=-dnux9oX7ak2LRpORaevmrDFu5bQFaJA7zDxln-wLgY,3076
5
+ tencentcloud/gs/v20191118/gs_client.py,sha256=ErkhL1VKJruVaAYC8bmj0mmwFjhaNxKjw2GTbgb70E8,74362
6
+ tencentcloud/gs/v20191118/models.py,sha256=yygelMrKdwRhtKI0k6Bup4mPbVnJM0F3aYXcnTaT-rg,323758
7
+ tencentcloud_sdk_python_gs-3.0.1416.dist-info/METADATA,sha256=T-ePeEnlfOO5Vu7pDxLchZq-lCz_ELa3DIWZexhraqw,1491
8
+ tencentcloud_sdk_python_gs-3.0.1416.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
+ tencentcloud_sdk_python_gs-3.0.1416.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
+ tencentcloud_sdk_python_gs-3.0.1416.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- tencentcloud/__init__.py,sha256=Xd0hvGKwfvxjEjwWjGrl0P1hEncpIhi1xeJloO0iFLQ,631
2
- tencentcloud/gs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- tencentcloud/gs/v20191118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- tencentcloud/gs/v20191118/errorcodes.py,sha256=oIAmPdpRJO6FvvrKyCQBHDlMEJl-9DgtfUrhgQVtXIs,3103
5
- tencentcloud/gs/v20191118/gs_client.py,sha256=u5GtGFPzZaRzZyBYEutqip68qwvr_2JQ5iEyEjlS82o,74389
6
- tencentcloud/gs/v20191118/models.py,sha256=uRdzgaJgUWB-J98GqAv1pS8mbiqSP8LbRcoGo3NnI0I,321813
7
- tencentcloud_sdk_python_gs-3.0.1409.dist-info/METADATA,sha256=hthitRvrpe0Rx_qXgi1X4ew3U6-Xkx0wTm7Cm9lJEa0,1491
8
- tencentcloud_sdk_python_gs-3.0.1409.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
- tencentcloud_sdk_python_gs-3.0.1409.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
- tencentcloud_sdk_python_gs-3.0.1409.dist-info/RECORD,,