tencentcloud-sdk-python-redis 3.1.122__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.122 → tencentcloud_sdk_python_redis-3.1.129}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/setup.py +1 -1
  3. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/models.py +34 -4
  5. {tencentcloud_sdk_python_redis-3.1.122 → 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.122/tencentcloud_sdk_python_redis.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/README.rst +0 -0
  9. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/__init__.py +0 -0
  11. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/__init__.py +0 -0
  12. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/redis_client.py +0 -0
  14. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud/redis/v20180412/redis_client_async.py +0 -0
  15. {tencentcloud_sdk_python_redis-3.1.122 → tencentcloud_sdk_python_redis-3.1.129}/tencentcloud_sdk_python_redis.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_redis-3.1.122 → 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.122 → 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.122
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.122
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.122,<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.122'
17
+ __version__ = '3.1.129'
@@ -2237,14 +2237,17 @@ class CloseSSLRequest(AbstractModel):
2237
2237
 
2238
2238
  def __init__(self):
2239
2239
  r"""
2240
- :param _InstanceId: 实例 ID。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID
2240
+ :param _InstanceId: <p>实例 ID。请登录<a href="https://console.cloud.tencent.com/redis">Redis控制台</a>在实例列表复制实例 ID。</p>
2241
2241
  :type InstanceId: str
2242
+ :param _AddressType: <p>SSL地址类型。</p><p>枚举值:</p><ul><li>0: 不限。</li><li>1: 内网IPv4。</li><li>2: 内网IPv6。</li><li>3: 外网。</li><li>-1: 未指定。</li></ul><p>默认值:0</p>
2243
+ :type AddressType: int
2242
2244
  """
2243
2245
  self._InstanceId = None
2246
+ self._AddressType = None
2244
2247
 
2245
2248
  @property
2246
2249
  def InstanceId(self):
2247
- r"""实例 ID。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID
2250
+ r"""<p>实例 ID。请登录<a href="https://console.cloud.tencent.com/redis">Redis控制台</a>在实例列表复制实例 ID。</p>
2248
2251
  :rtype: str
2249
2252
  """
2250
2253
  return self._InstanceId
@@ -2253,9 +2256,21 @@ class CloseSSLRequest(AbstractModel):
2253
2256
  def InstanceId(self, InstanceId):
2254
2257
  self._InstanceId = InstanceId
2255
2258
 
2259
+ @property
2260
+ def AddressType(self):
2261
+ r"""<p>SSL地址类型。</p><p>枚举值:</p><ul><li>0: 不限。</li><li>1: 内网IPv4。</li><li>2: 内网IPv6。</li><li>3: 外网。</li><li>-1: 未指定。</li></ul><p>默认值:0</p>
2262
+ :rtype: int
2263
+ """
2264
+ return self._AddressType
2265
+
2266
+ @AddressType.setter
2267
+ def AddressType(self, AddressType):
2268
+ self._AddressType = AddressType
2269
+
2256
2270
 
2257
2271
  def _deserialize(self, params):
2258
2272
  self._InstanceId = params.get("InstanceId")
2273
+ self._AddressType = params.get("AddressType")
2259
2274
  memeber_set = set(params.keys())
2260
2275
  for name, value in vars(self).items():
2261
2276
  property_name = name[1:]
@@ -2273,7 +2288,7 @@ class CloseSSLResponse(AbstractModel):
2273
2288
 
2274
2289
  def __init__(self):
2275
2290
  r"""
2276
- :param _TaskId: 任务ID
2291
+ :param _TaskId: <p>任务ID。</p>
2277
2292
  :type TaskId: int
2278
2293
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2279
2294
  :type RequestId: str
@@ -2283,7 +2298,7 @@ class CloseSSLResponse(AbstractModel):
2283
2298
 
2284
2299
  @property
2285
2300
  def TaskId(self):
2286
- r"""任务ID
2301
+ r"""<p>任务ID。</p>
2287
2302
  :rtype: int
2288
2303
  """
2289
2304
  return self._TaskId
@@ -2483,11 +2498,25 @@ class CreateExportTaskResponse(AbstractModel):
2483
2498
 
2484
2499
  def __init__(self):
2485
2500
  r"""
2501
+ :param _FileName: <p>文件名称</p>
2502
+ :type FileName: str
2486
2503
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2487
2504
  :type RequestId: str
2488
2505
  """
2506
+ self._FileName = None
2489
2507
  self._RequestId = None
2490
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
+
2491
2520
  @property
2492
2521
  def RequestId(self):
2493
2522
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -2501,6 +2530,7 @@ class CreateExportTaskResponse(AbstractModel):
2501
2530
 
2502
2531
 
2503
2532
  def _deserialize(self, params):
2533
+ self._FileName = params.get("FileName")
2504
2534
  self._RequestId = params.get("RequestId")
2505
2535
 
2506
2536
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-redis
3
- Version: 3.1.122
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.122
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.122