tencentcloud-sdk-python-gs 3.0.1369__py2.py3-none-any.whl → 3.0.1371__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.1369'
17
+ __version__ = '3.0.1371'
@@ -215,13 +215,16 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
215
215
  :type State: str
216
216
  :param _CreateTime: 安卓应用版本创建时间
217
217
  :type CreateTime: str
218
- :param _Command: shell 命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
218
+ :param _Command: shell 安装命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
219
219
  :type Command: str
220
+ :param _UninstallCommand: shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
221
+ :type UninstallCommand: str
220
222
  """
221
223
  self._AndroidAppVersion = None
222
224
  self._State = None
223
225
  self._CreateTime = None
224
226
  self._Command = None
227
+ self._UninstallCommand = None
225
228
 
226
229
  @property
227
230
  def AndroidAppVersion(self):
@@ -260,7 +263,7 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
260
263
 
261
264
  @property
262
265
  def Command(self):
263
- """shell 命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
266
+ """shell 安装命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
264
267
  :rtype: str
265
268
  """
266
269
  return self._Command
@@ -269,12 +272,24 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
269
272
  def Command(self, Command):
270
273
  self._Command = Command
271
274
 
275
+ @property
276
+ def UninstallCommand(self):
277
+ """shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
278
+ :rtype: str
279
+ """
280
+ return self._UninstallCommand
281
+
282
+ @UninstallCommand.setter
283
+ def UninstallCommand(self, UninstallCommand):
284
+ self._UninstallCommand = UninstallCommand
285
+
272
286
 
273
287
  def _deserialize(self, params):
274
288
  self._AndroidAppVersion = params.get("AndroidAppVersion")
275
289
  self._State = params.get("State")
276
290
  self._CreateTime = params.get("CreateTime")
277
291
  self._Command = params.get("Command")
292
+ self._UninstallCommand = params.get("UninstallCommand")
278
293
  memeber_set = set(params.keys())
279
294
  for name, value in vars(self).items():
280
295
  property_name = name[1:]
@@ -1569,12 +1584,15 @@ class CreateAndroidAppVersionRequest(AbstractModel):
1569
1584
  :type AndroidAppId: str
1570
1585
  :param _DownloadUrl: 应用包下载地址
1571
1586
  :type DownloadUrl: str
1572
- :param _Command: shell 命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
1587
+ :param _Command: 应用 shell 安装命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
1573
1588
  :type Command: str
1589
+ :param _UninstallCommand: 应用 shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
1590
+ :type UninstallCommand: str
1574
1591
  """
1575
1592
  self._AndroidAppId = None
1576
1593
  self._DownloadUrl = None
1577
1594
  self._Command = None
1595
+ self._UninstallCommand = None
1578
1596
 
1579
1597
  @property
1580
1598
  def AndroidAppId(self):
@@ -1600,7 +1618,7 @@ class CreateAndroidAppVersionRequest(AbstractModel):
1600
1618
 
1601
1619
  @property
1602
1620
  def Command(self):
1603
- """shell 命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
1621
+ """应用 shell 安装命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
1604
1622
  :rtype: str
1605
1623
  """
1606
1624
  return self._Command
@@ -1609,11 +1627,23 @@ class CreateAndroidAppVersionRequest(AbstractModel):
1609
1627
  def Command(self, Command):
1610
1628
  self._Command = Command
1611
1629
 
1630
+ @property
1631
+ def UninstallCommand(self):
1632
+ """应用 shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
1633
+ :rtype: str
1634
+ """
1635
+ return self._UninstallCommand
1636
+
1637
+ @UninstallCommand.setter
1638
+ def UninstallCommand(self, UninstallCommand):
1639
+ self._UninstallCommand = UninstallCommand
1640
+
1612
1641
 
1613
1642
  def _deserialize(self, params):
1614
1643
  self._AndroidAppId = params.get("AndroidAppId")
1615
1644
  self._DownloadUrl = params.get("DownloadUrl")
1616
1645
  self._Command = params.get("Command")
1646
+ self._UninstallCommand = params.get("UninstallCommand")
1617
1647
  memeber_set = set(params.keys())
1618
1648
  for name, value in vars(self).items():
1619
1649
  property_name = name[1:]
@@ -4852,13 +4882,16 @@ class ModifyAndroidAppVersionRequest(AbstractModel):
4852
4882
  :type AndroidAppVersion: str
4853
4883
  :param _AndroidAppVersionName: 安卓应用版本名称
4854
4884
  :type AndroidAppVersionName: str
4855
- :param _Command: shell 命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
4885
+ :param _Command: 应用 shell 安装命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
4856
4886
  :type Command: str
4887
+ :param _UninstallCommand: 应用 shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
4888
+ :type UninstallCommand: str
4857
4889
  """
4858
4890
  self._AndroidAppId = None
4859
4891
  self._AndroidAppVersion = None
4860
4892
  self._AndroidAppVersionName = None
4861
4893
  self._Command = None
4894
+ self._UninstallCommand = None
4862
4895
 
4863
4896
  @property
4864
4897
  def AndroidAppId(self):
@@ -4895,7 +4928,7 @@ class ModifyAndroidAppVersionRequest(AbstractModel):
4895
4928
 
4896
4929
  @property
4897
4930
  def Command(self):
4898
- """shell 命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
4931
+ """应用 shell 安装命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
4899
4932
  :rtype: str
4900
4933
  """
4901
4934
  return self._Command
@@ -4904,12 +4937,24 @@ class ModifyAndroidAppVersionRequest(AbstractModel):
4904
4937
  def Command(self, Command):
4905
4938
  self._Command = Command
4906
4939
 
4940
+ @property
4941
+ def UninstallCommand(self):
4942
+ """应用 shell 卸载命令(支持多条命令执行,通过 && 组合;只在应用 AppMode 为 ADVANCED 高级模式下 才会生效)
4943
+ :rtype: str
4944
+ """
4945
+ return self._UninstallCommand
4946
+
4947
+ @UninstallCommand.setter
4948
+ def UninstallCommand(self, UninstallCommand):
4949
+ self._UninstallCommand = UninstallCommand
4950
+
4907
4951
 
4908
4952
  def _deserialize(self, params):
4909
4953
  self._AndroidAppId = params.get("AndroidAppId")
4910
4954
  self._AndroidAppVersion = params.get("AndroidAppVersion")
4911
4955
  self._AndroidAppVersionName = params.get("AndroidAppVersionName")
4912
4956
  self._Command = params.get("Command")
4957
+ self._UninstallCommand = params.get("UninstallCommand")
4913
4958
  memeber_set = set(params.keys())
4914
4959
  for name, value in vars(self).items():
4915
4960
  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.1369
3
+ Version: 3.0.1371
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.1369)
18
+ Requires-Dist: tencentcloud-sdk-python-common (==3.0.1371)
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,10 @@
1
+ tencentcloud/__init__.py,sha256=4fUWyKcwk0crA9a4hI_qroNUdnq1tE4G6UDEbfAt044,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=UxPAeLm-g336YxdqDVr5fbY1rhUYrv47J1grvj2OG4o,52232
6
+ tencentcloud/gs/v20191118/models.py,sha256=m7G5A10y6y32fAUPuz9n1vrc6hKQ6xkpffkyBFzZBtk,232760
7
+ tencentcloud_sdk_python_gs-3.0.1371.dist-info/METADATA,sha256=vkzgsjHBKnIu27AaIWEERJXvkZrc9wr0nEJOEOrAXwQ,1491
8
+ tencentcloud_sdk_python_gs-3.0.1371.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
+ tencentcloud_sdk_python_gs-3.0.1371.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
+ tencentcloud_sdk_python_gs-3.0.1371.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- tencentcloud/__init__.py,sha256=pu4AjX8wOfEMh44AKSOxvUhQ2nnvdy667x1mIsYoxGU,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=UxPAeLm-g336YxdqDVr5fbY1rhUYrv47J1grvj2OG4o,52232
6
- tencentcloud/gs/v20191118/models.py,sha256=C_ibRQXX6SvAgVugNgbKNCK2WpP8Wtp5l7mlSglfSMA,230580
7
- tencentcloud_sdk_python_gs-3.0.1369.dist-info/METADATA,sha256=9rZhzLwdNRCXifv76wYNMgOn904ohEzx5tTKWIgzEk8,1491
8
- tencentcloud_sdk_python_gs-3.0.1369.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
- tencentcloud_sdk_python_gs-3.0.1369.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
- tencentcloud_sdk_python_gs-3.0.1369.dist-info/RECORD,,