tencentcloud-sdk-python-gs 3.0.1387__tar.gz → 3.0.1388__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.1387 → tencentcloud-sdk-python-gs-3.0.1388}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/setup.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/tencentcloud/gs/v20191118/models.py +30 -0
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-gs-3.0.1388/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-gs-3.0.1387/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/README.rst +0 -0
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/setup.cfg +0 -0
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/tencentcloud/gs/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/tencentcloud/gs/v20191118/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/tencentcloud/gs/v20191118/gs_client.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1387 → tencentcloud-sdk-python-gs-3.0.1388}/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.1388"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Gs SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -5966,9 +5966,12 @@ class RestartAndroidInstancesAppRequest(AbstractModel):
|
|
|
5966
5966
|
:type AndroidInstanceIds: list of str
|
|
5967
5967
|
:param _PackageName: 应用包名
|
|
5968
5968
|
:type PackageName: str
|
|
5969
|
+
:param _Activity: 启动页。建议指定启动页来启动应用,避免启动失败。如果启动页为空,系统尝试根据 PackageName 启动,但不保证成功。
|
|
5970
|
+
:type Activity: str
|
|
5969
5971
|
"""
|
|
5970
5972
|
self._AndroidInstanceIds = None
|
|
5971
5973
|
self._PackageName = None
|
|
5974
|
+
self._Activity = None
|
|
5972
5975
|
|
|
5973
5976
|
@property
|
|
5974
5977
|
def AndroidInstanceIds(self):
|
|
@@ -5992,10 +5995,22 @@ class RestartAndroidInstancesAppRequest(AbstractModel):
|
|
|
5992
5995
|
def PackageName(self, PackageName):
|
|
5993
5996
|
self._PackageName = PackageName
|
|
5994
5997
|
|
|
5998
|
+
@property
|
|
5999
|
+
def Activity(self):
|
|
6000
|
+
"""启动页。建议指定启动页来启动应用,避免启动失败。如果启动页为空,系统尝试根据 PackageName 启动,但不保证成功。
|
|
6001
|
+
:rtype: str
|
|
6002
|
+
"""
|
|
6003
|
+
return self._Activity
|
|
6004
|
+
|
|
6005
|
+
@Activity.setter
|
|
6006
|
+
def Activity(self, Activity):
|
|
6007
|
+
self._Activity = Activity
|
|
6008
|
+
|
|
5995
6009
|
|
|
5996
6010
|
def _deserialize(self, params):
|
|
5997
6011
|
self._AndroidInstanceIds = params.get("AndroidInstanceIds")
|
|
5998
6012
|
self._PackageName = params.get("PackageName")
|
|
6013
|
+
self._Activity = params.get("Activity")
|
|
5999
6014
|
memeber_set = set(params.keys())
|
|
6000
6015
|
for name, value in vars(self).items():
|
|
6001
6016
|
property_name = name[1:]
|
|
@@ -6348,9 +6363,12 @@ class StartAndroidInstancesAppRequest(AbstractModel):
|
|
|
6348
6363
|
:type AndroidInstanceIds: list of str
|
|
6349
6364
|
:param _PackageName: 应用包名
|
|
6350
6365
|
:type PackageName: str
|
|
6366
|
+
:param _Activity: 启动页。建议指定启动页来启动应用,避免启动失败。如果启动页为空,系统尝试根据 PackageName 启动,但不保证成功。
|
|
6367
|
+
:type Activity: str
|
|
6351
6368
|
"""
|
|
6352
6369
|
self._AndroidInstanceIds = None
|
|
6353
6370
|
self._PackageName = None
|
|
6371
|
+
self._Activity = None
|
|
6354
6372
|
|
|
6355
6373
|
@property
|
|
6356
6374
|
def AndroidInstanceIds(self):
|
|
@@ -6374,10 +6392,22 @@ class StartAndroidInstancesAppRequest(AbstractModel):
|
|
|
6374
6392
|
def PackageName(self, PackageName):
|
|
6375
6393
|
self._PackageName = PackageName
|
|
6376
6394
|
|
|
6395
|
+
@property
|
|
6396
|
+
def Activity(self):
|
|
6397
|
+
"""启动页。建议指定启动页来启动应用,避免启动失败。如果启动页为空,系统尝试根据 PackageName 启动,但不保证成功。
|
|
6398
|
+
:rtype: str
|
|
6399
|
+
"""
|
|
6400
|
+
return self._Activity
|
|
6401
|
+
|
|
6402
|
+
@Activity.setter
|
|
6403
|
+
def Activity(self, Activity):
|
|
6404
|
+
self._Activity = Activity
|
|
6405
|
+
|
|
6377
6406
|
|
|
6378
6407
|
def _deserialize(self, params):
|
|
6379
6408
|
self._AndroidInstanceIds = params.get("AndroidInstanceIds")
|
|
6380
6409
|
self._PackageName = params.get("PackageName")
|
|
6410
|
+
self._Activity = params.get("Activity")
|
|
6381
6411
|
memeber_set = set(params.keys())
|
|
6382
6412
|
for name, value in vars(self).items():
|
|
6383
6413
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1388
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1387
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|