tencentcloud-sdk-python-redis 3.1.145__tar.gz → 3.1.151__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.
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/setup.py +1 -1
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud/redis/v20180412/models.py +15 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud_sdk_python_redis.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_redis-3.1.151/tencentcloud_sdk_python_redis.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_redis-3.1.145/tencentcloud_sdk_python_redis.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/README.rst +0 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/setup.cfg +0 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud/redis/__init__.py +0 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud/redis/v20180412/__init__.py +0 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud/redis/v20180412/errorcodes.py +0 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud/redis/v20180412/redis_client.py +0 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud/redis/v20180412/redis_client_async.py +0 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud_sdk_python_redis.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/tencentcloud_sdk_python_redis.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_redis-3.1.145 → tencentcloud_sdk_python_redis-3.1.151}/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.
|
|
3
|
+
Version: 3.1.151
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.151
|
|
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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.151,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Redis SDK for Python',
|
|
@@ -1749,6 +1749,8 @@ class CloneInstancesRequest(AbstractModel):
|
|
|
1749
1749
|
:type EnableSSL: bool
|
|
1750
1750
|
:param _SSLBindPrivateIPv4: <p>开启 SSL 时,是否将实例的内网 IPv4 地址写入证书的域名别名(SAN)中。仅在 EnableSSL 为 true 时生效。</p><p>枚举值:</p><ul><li>true: 允许使用内网 IP 进行 SSL 证书校验。</li><li>false: 不添加证书的 SAN 扩展信息。</li></ul><p>默认值:false</p>
|
|
1751
1751
|
:type SSLBindPrivateIPv4: bool
|
|
1752
|
+
:param _ProductVersion: <p>指实例类型</p><p>枚举值:</p><ul><li>local: 通用 I 型</li><li>localv2: 通用 II 型</li></ul><p>不传则默认和原实例类型保持一致</p>
|
|
1753
|
+
:type ProductVersion: str
|
|
1752
1754
|
"""
|
|
1753
1755
|
self._InstanceId = None
|
|
1754
1756
|
self._GoodsNum = None
|
|
@@ -1774,6 +1776,7 @@ class CloneInstancesRequest(AbstractModel):
|
|
|
1774
1776
|
self._PasswordPolicy = None
|
|
1775
1777
|
self._EnableSSL = None
|
|
1776
1778
|
self._SSLBindPrivateIPv4 = None
|
|
1779
|
+
self._ProductVersion = None
|
|
1777
1780
|
|
|
1778
1781
|
@property
|
|
1779
1782
|
def InstanceId(self):
|
|
@@ -2039,6 +2042,17 @@ class CloneInstancesRequest(AbstractModel):
|
|
|
2039
2042
|
def SSLBindPrivateIPv4(self, SSLBindPrivateIPv4):
|
|
2040
2043
|
self._SSLBindPrivateIPv4 = SSLBindPrivateIPv4
|
|
2041
2044
|
|
|
2045
|
+
@property
|
|
2046
|
+
def ProductVersion(self):
|
|
2047
|
+
r"""<p>指实例类型</p><p>枚举值:</p><ul><li>local: 通用 I 型</li><li>localv2: 通用 II 型</li></ul><p>不传则默认和原实例类型保持一致</p>
|
|
2048
|
+
:rtype: str
|
|
2049
|
+
"""
|
|
2050
|
+
return self._ProductVersion
|
|
2051
|
+
|
|
2052
|
+
@ProductVersion.setter
|
|
2053
|
+
def ProductVersion(self, ProductVersion):
|
|
2054
|
+
self._ProductVersion = ProductVersion
|
|
2055
|
+
|
|
2042
2056
|
|
|
2043
2057
|
def _deserialize(self, params):
|
|
2044
2058
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -2077,6 +2091,7 @@ class CloneInstancesRequest(AbstractModel):
|
|
|
2077
2091
|
self._PasswordPolicy._deserialize(params.get("PasswordPolicy"))
|
|
2078
2092
|
self._EnableSSL = params.get("EnableSSL")
|
|
2079
2093
|
self._SSLBindPrivateIPv4 = params.get("SSLBindPrivateIPv4")
|
|
2094
|
+
self._ProductVersion = params.get("ProductVersion")
|
|
2080
2095
|
memeber_set = set(params.keys())
|
|
2081
2096
|
for name, value in vars(self).items():
|
|
2082
2097
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-redis
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.151
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.151
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.151
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.145
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|