tencentcloud-sdk-python-redis 3.1.123__tar.gz → 3.1.129__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/setup.py +1 -1
  3. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/models.py +15 -0
  5. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud_sdk_python_redis.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_redis-3.1.129/tencentcloud_sdk_python_redis.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_redis-3.1.123/tencentcloud_sdk_python_redis.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/README.rst +0 -0
  9. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/__init__.py +0 -0
  11. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/__init__.py +0 -0
  12. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/redis_client.py +0 -0
  14. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/redis_client_async.py +0 -0
  15. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud_sdk_python_redis.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud_sdk_python_redis.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_redis-3.1.123 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud_sdk_python_redis.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-redis
3
- Version: 3.1.123
3
+ Version: 3.1.129
4
4
  Summary: Tencent Cloud Redis 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<4.0.0,>=3.1.123
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.129
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-redis',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.123,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.129,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Redis SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.123'
17
+ __version__ = '3.1.129'
@@ -2498,11 +2498,25 @@ class CreateExportTaskResponse(AbstractModel):
2498
2498
 
2499
2499
  def __init__(self):
2500
2500
  r"""
2501
+ :param _FileName: <p>文件名称</p>
2502
+ :type FileName: str
2501
2503
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2502
2504
  :type RequestId: str
2503
2505
  """
2506
+ self._FileName = None
2504
2507
  self._RequestId = None
2505
2508
 
2509
+ @property
2510
+ def FileName(self):
2511
+ r"""<p>文件名称</p>
2512
+ :rtype: str
2513
+ """
2514
+ return self._FileName
2515
+
2516
+ @FileName.setter
2517
+ def FileName(self, FileName):
2518
+ self._FileName = FileName
2519
+
2506
2520
  @property
2507
2521
  def RequestId(self):
2508
2522
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -2516,6 +2530,7 @@ class CreateExportTaskResponse(AbstractModel):
2516
2530
 
2517
2531
 
2518
2532
  def _deserialize(self, params):
2533
+ self._FileName = params.get("FileName")
2519
2534
  self._RequestId = params.get("RequestId")
2520
2535
 
2521
2536
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-redis
3
- Version: 3.1.123
3
+ Version: 3.1.129
4
4
  Summary: Tencent Cloud Redis 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<4.0.0,>=3.1.123
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.129
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.129
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.123