tencentcloud-sdk-python-gs 3.0.1369__tar.gz → 3.0.1371__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-gs might be problematic. Click here for more details.
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/setup.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud/gs/v20191118/models.py +51 -6
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-gs-3.0.1371/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-gs-3.0.1369/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/README.rst +0 -0
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/setup.cfg +0 -0
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud/gs/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud/gs/v20191118/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud/gs/v20191118/gs_client.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1369 → tencentcloud-sdk-python-gs-3.0.1371}/tencentcloud_sdk_python_gs.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-gs',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1371"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Gs SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1371
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1369
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|