tencentcloud-sdk-python-gs 3.0.1426__tar.gz → 3.0.1428__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.1428}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/setup.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/tencentcloud/gs/v20191118/models.py +15 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-gs-3.0.1428/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.1428}/README.rst +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/setup.cfg +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/tencentcloud/gs/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/tencentcloud/gs/v20191118/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/tencentcloud/gs/v20191118/gs_client.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1426 → tencentcloud-sdk-python-gs-3.0.1428}/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.1428,<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(),
|
|
@@ -4961,11 +4961,14 @@ class DescribeAndroidInstanceTasksStatusRequest(AbstractModel):
|
|
|
4961
4961
|
:type Offset: int
|
|
4962
4962
|
:param _Limit: 限制量,默认为20,最大值为100
|
|
4963
4963
|
:type Limit: int
|
|
4964
|
+
:param _RecentDays: 时间范围限制,以天数为单位
|
|
4965
|
+
:type RecentDays: int
|
|
4964
4966
|
"""
|
|
4965
4967
|
self._TaskIds = None
|
|
4966
4968
|
self._Filter = None
|
|
4967
4969
|
self._Offset = None
|
|
4968
4970
|
self._Limit = None
|
|
4971
|
+
self._RecentDays = None
|
|
4969
4972
|
|
|
4970
4973
|
@property
|
|
4971
4974
|
def TaskIds(self):
|
|
@@ -5011,6 +5014,17 @@ class DescribeAndroidInstanceTasksStatusRequest(AbstractModel):
|
|
|
5011
5014
|
def Limit(self, Limit):
|
|
5012
5015
|
self._Limit = Limit
|
|
5013
5016
|
|
|
5017
|
+
@property
|
|
5018
|
+
def RecentDays(self):
|
|
5019
|
+
"""时间范围限制,以天数为单位
|
|
5020
|
+
:rtype: int
|
|
5021
|
+
"""
|
|
5022
|
+
return self._RecentDays
|
|
5023
|
+
|
|
5024
|
+
@RecentDays.setter
|
|
5025
|
+
def RecentDays(self, RecentDays):
|
|
5026
|
+
self._RecentDays = RecentDays
|
|
5027
|
+
|
|
5014
5028
|
|
|
5015
5029
|
def _deserialize(self, params):
|
|
5016
5030
|
self._TaskIds = params.get("TaskIds")
|
|
@@ -5022,6 +5036,7 @@ class DescribeAndroidInstanceTasksStatusRequest(AbstractModel):
|
|
|
5022
5036
|
self._Filter.append(obj)
|
|
5023
5037
|
self._Offset = params.get("Offset")
|
|
5024
5038
|
self._Limit = params.get("Limit")
|
|
5039
|
+
self._RecentDays = params.get("RecentDays")
|
|
5025
5040
|
memeber_set = set(params.keys())
|
|
5026
5041
|
for name, value in vars(self).items():
|
|
5027
5042
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1428
|
|
@@ -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
|