tencentcloud-sdk-python-gs 3.0.1426__tar.gz → 3.0.1431__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.1426 → tencentcloud-sdk-python-gs-3.0.1431}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/setup.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/tencentcloud/gs/v20191118/models.py +72 -4
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-gs-3.0.1431/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-gs-3.0.1426/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/README.rst +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/setup.cfg +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/tencentcloud/gs/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/tencentcloud/gs/v20191118/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/tencentcloud/gs/v20191118/gs_client.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1431}/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.1431,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Gs SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3399,17 +3399,20 @@ class CreateCosCredentialRequest(AbstractModel):
|
|
|
3399
3399
|
|
|
3400
3400
|
def __init__(self):
|
|
3401
3401
|
r"""
|
|
3402
|
-
:param _CosType: Cos
|
|
3402
|
+
:param _CosType: Cos 密钥类型,取值: Mobile 云手游、PC 云端游、AndroidApp 云手机应用管理、AndroidAppFile 云手机文件管理、AndroidAppBackup 云手机备份还原
|
|
3403
3403
|
:type CosType: str
|
|
3404
|
-
:param _AndroidAppCosInfo:
|
|
3404
|
+
:param _AndroidAppCosInfo: 云手机应用管理 Cos 数据
|
|
3405
3405
|
:type AndroidAppCosInfo: :class:`tencentcloud.gs.v20191118.models.AndroidAppCosInfo`
|
|
3406
|
+
:param _AndroidAppFileCosInfo: 云手机文件管理 Cos 数据
|
|
3407
|
+
:type AndroidAppFileCosInfo: :class:`tencentcloud.gs.v20191118.models.FileCosInfo`
|
|
3406
3408
|
"""
|
|
3407
3409
|
self._CosType = None
|
|
3408
3410
|
self._AndroidAppCosInfo = None
|
|
3411
|
+
self._AndroidAppFileCosInfo = None
|
|
3409
3412
|
|
|
3410
3413
|
@property
|
|
3411
3414
|
def CosType(self):
|
|
3412
|
-
"""Cos
|
|
3415
|
+
"""Cos 密钥类型,取值: Mobile 云手游、PC 云端游、AndroidApp 云手机应用管理、AndroidAppFile 云手机文件管理、AndroidAppBackup 云手机备份还原
|
|
3413
3416
|
:rtype: str
|
|
3414
3417
|
"""
|
|
3415
3418
|
return self._CosType
|
|
@@ -3420,7 +3423,7 @@ class CreateCosCredentialRequest(AbstractModel):
|
|
|
3420
3423
|
|
|
3421
3424
|
@property
|
|
3422
3425
|
def AndroidAppCosInfo(self):
|
|
3423
|
-
"""
|
|
3426
|
+
"""云手机应用管理 Cos 数据
|
|
3424
3427
|
:rtype: :class:`tencentcloud.gs.v20191118.models.AndroidAppCosInfo`
|
|
3425
3428
|
"""
|
|
3426
3429
|
return self._AndroidAppCosInfo
|
|
@@ -3429,12 +3432,26 @@ class CreateCosCredentialRequest(AbstractModel):
|
|
|
3429
3432
|
def AndroidAppCosInfo(self, AndroidAppCosInfo):
|
|
3430
3433
|
self._AndroidAppCosInfo = AndroidAppCosInfo
|
|
3431
3434
|
|
|
3435
|
+
@property
|
|
3436
|
+
def AndroidAppFileCosInfo(self):
|
|
3437
|
+
"""云手机文件管理 Cos 数据
|
|
3438
|
+
:rtype: :class:`tencentcloud.gs.v20191118.models.FileCosInfo`
|
|
3439
|
+
"""
|
|
3440
|
+
return self._AndroidAppFileCosInfo
|
|
3441
|
+
|
|
3442
|
+
@AndroidAppFileCosInfo.setter
|
|
3443
|
+
def AndroidAppFileCosInfo(self, AndroidAppFileCosInfo):
|
|
3444
|
+
self._AndroidAppFileCosInfo = AndroidAppFileCosInfo
|
|
3445
|
+
|
|
3432
3446
|
|
|
3433
3447
|
def _deserialize(self, params):
|
|
3434
3448
|
self._CosType = params.get("CosType")
|
|
3435
3449
|
if params.get("AndroidAppCosInfo") is not None:
|
|
3436
3450
|
self._AndroidAppCosInfo = AndroidAppCosInfo()
|
|
3437
3451
|
self._AndroidAppCosInfo._deserialize(params.get("AndroidAppCosInfo"))
|
|
3452
|
+
if params.get("AndroidAppFileCosInfo") is not None:
|
|
3453
|
+
self._AndroidAppFileCosInfo = FileCosInfo()
|
|
3454
|
+
self._AndroidAppFileCosInfo._deserialize(params.get("AndroidAppFileCosInfo"))
|
|
3438
3455
|
memeber_set = set(params.keys())
|
|
3439
3456
|
for name, value in vars(self).items():
|
|
3440
3457
|
property_name = name[1:]
|
|
@@ -4961,11 +4978,14 @@ class DescribeAndroidInstanceTasksStatusRequest(AbstractModel):
|
|
|
4961
4978
|
:type Offset: int
|
|
4962
4979
|
:param _Limit: 限制量,默认为20,最大值为100
|
|
4963
4980
|
:type Limit: int
|
|
4981
|
+
:param _RecentDays: 时间范围限制,以天数为单位
|
|
4982
|
+
:type RecentDays: int
|
|
4964
4983
|
"""
|
|
4965
4984
|
self._TaskIds = None
|
|
4966
4985
|
self._Filter = None
|
|
4967
4986
|
self._Offset = None
|
|
4968
4987
|
self._Limit = None
|
|
4988
|
+
self._RecentDays = None
|
|
4969
4989
|
|
|
4970
4990
|
@property
|
|
4971
4991
|
def TaskIds(self):
|
|
@@ -5011,6 +5031,17 @@ class DescribeAndroidInstanceTasksStatusRequest(AbstractModel):
|
|
|
5011
5031
|
def Limit(self, Limit):
|
|
5012
5032
|
self._Limit = Limit
|
|
5013
5033
|
|
|
5034
|
+
@property
|
|
5035
|
+
def RecentDays(self):
|
|
5036
|
+
"""时间范围限制,以天数为单位
|
|
5037
|
+
:rtype: int
|
|
5038
|
+
"""
|
|
5039
|
+
return self._RecentDays
|
|
5040
|
+
|
|
5041
|
+
@RecentDays.setter
|
|
5042
|
+
def RecentDays(self, RecentDays):
|
|
5043
|
+
self._RecentDays = RecentDays
|
|
5044
|
+
|
|
5014
5045
|
|
|
5015
5046
|
def _deserialize(self, params):
|
|
5016
5047
|
self._TaskIds = params.get("TaskIds")
|
|
@@ -5022,6 +5053,7 @@ class DescribeAndroidInstanceTasksStatusRequest(AbstractModel):
|
|
|
5022
5053
|
self._Filter.append(obj)
|
|
5023
5054
|
self._Offset = params.get("Offset")
|
|
5024
5055
|
self._Limit = params.get("Limit")
|
|
5056
|
+
self._RecentDays = params.get("RecentDays")
|
|
5025
5057
|
memeber_set = set(params.keys())
|
|
5026
5058
|
for name, value in vars(self).items():
|
|
5027
5059
|
property_name = name[1:]
|
|
@@ -6444,6 +6476,42 @@ class FetchAndroidInstancesLogsResponse(AbstractModel):
|
|
|
6444
6476
|
self._RequestId = params.get("RequestId")
|
|
6445
6477
|
|
|
6446
6478
|
|
|
6479
|
+
class FileCosInfo(AbstractModel):
|
|
6480
|
+
"""应用文件 Cos 信息
|
|
6481
|
+
|
|
6482
|
+
"""
|
|
6483
|
+
|
|
6484
|
+
def __init__(self):
|
|
6485
|
+
r"""
|
|
6486
|
+
:param _FileId: 文件 Id
|
|
6487
|
+
:type FileId: str
|
|
6488
|
+
"""
|
|
6489
|
+
self._FileId = None
|
|
6490
|
+
|
|
6491
|
+
@property
|
|
6492
|
+
def FileId(self):
|
|
6493
|
+
"""文件 Id
|
|
6494
|
+
:rtype: str
|
|
6495
|
+
"""
|
|
6496
|
+
return self._FileId
|
|
6497
|
+
|
|
6498
|
+
@FileId.setter
|
|
6499
|
+
def FileId(self, FileId):
|
|
6500
|
+
self._FileId = FileId
|
|
6501
|
+
|
|
6502
|
+
|
|
6503
|
+
def _deserialize(self, params):
|
|
6504
|
+
self._FileId = params.get("FileId")
|
|
6505
|
+
memeber_set = set(params.keys())
|
|
6506
|
+
for name, value in vars(self).items():
|
|
6507
|
+
property_name = name[1:]
|
|
6508
|
+
if property_name in memeber_set:
|
|
6509
|
+
memeber_set.remove(property_name)
|
|
6510
|
+
if len(memeber_set) > 0:
|
|
6511
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
6512
|
+
|
|
6513
|
+
|
|
6514
|
+
|
|
6447
6515
|
class Filter(AbstractModel):
|
|
6448
6516
|
"""过滤
|
|
6449
6517
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1431
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1426
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|