tencentcloud-sdk-python-redis 3.0.1482__tar.gz → 3.0.1483__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.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/setup.py +1 -1
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/tencentcloud/redis/v20180412/models.py +30 -0
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/tencentcloud_sdk_python_redis.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_redis-3.0.1483/tencentcloud_sdk_python_redis.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_redis-3.0.1482/tencentcloud_sdk_python_redis.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/README.rst +0 -0
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/setup.cfg +0 -0
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/tencentcloud/redis/__init__.py +0 -0
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/tencentcloud/redis/v20180412/__init__.py +0 -0
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/tencentcloud/redis/v20180412/errorcodes.py +0 -0
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/tencentcloud/redis/v20180412/redis_client.py +0 -0
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/tencentcloud_sdk_python_redis.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/tencentcloud_sdk_python_redis.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/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.0.
|
|
3
|
+
Version: 3.0.1483
|
|
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.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1483
|
|
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.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1483,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Redis SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -13171,6 +13171,10 @@ class InstanceClusterShard(AbstractModel):
|
|
|
13171
13171
|
- 0:down。
|
|
13172
13172
|
- 1:on。
|
|
13173
13173
|
:type Connected: int
|
|
13174
|
+
:param _ZoneId: 可用区信息。
|
|
13175
|
+
:type ZoneId: str
|
|
13176
|
+
:param _ReplicasNodeId: 节点组 ID。
|
|
13177
|
+
:type ReplicasNodeId: int
|
|
13174
13178
|
"""
|
|
13175
13179
|
self._ShardName = None
|
|
13176
13180
|
self._ShardId = None
|
|
@@ -13182,6 +13186,8 @@ class InstanceClusterShard(AbstractModel):
|
|
|
13182
13186
|
self._Runid = None
|
|
13183
13187
|
self._RunId = None
|
|
13184
13188
|
self._Connected = None
|
|
13189
|
+
self._ZoneId = None
|
|
13190
|
+
self._ReplicasNodeId = None
|
|
13185
13191
|
|
|
13186
13192
|
@property
|
|
13187
13193
|
def ShardName(self):
|
|
@@ -13297,6 +13303,28 @@ class InstanceClusterShard(AbstractModel):
|
|
|
13297
13303
|
def Connected(self, Connected):
|
|
13298
13304
|
self._Connected = Connected
|
|
13299
13305
|
|
|
13306
|
+
@property
|
|
13307
|
+
def ZoneId(self):
|
|
13308
|
+
r"""可用区信息。
|
|
13309
|
+
:rtype: str
|
|
13310
|
+
"""
|
|
13311
|
+
return self._ZoneId
|
|
13312
|
+
|
|
13313
|
+
@ZoneId.setter
|
|
13314
|
+
def ZoneId(self, ZoneId):
|
|
13315
|
+
self._ZoneId = ZoneId
|
|
13316
|
+
|
|
13317
|
+
@property
|
|
13318
|
+
def ReplicasNodeId(self):
|
|
13319
|
+
r"""节点组 ID。
|
|
13320
|
+
:rtype: int
|
|
13321
|
+
"""
|
|
13322
|
+
return self._ReplicasNodeId
|
|
13323
|
+
|
|
13324
|
+
@ReplicasNodeId.setter
|
|
13325
|
+
def ReplicasNodeId(self, ReplicasNodeId):
|
|
13326
|
+
self._ReplicasNodeId = ReplicasNodeId
|
|
13327
|
+
|
|
13300
13328
|
|
|
13301
13329
|
def _deserialize(self, params):
|
|
13302
13330
|
self._ShardName = params.get("ShardName")
|
|
@@ -13309,6 +13337,8 @@ class InstanceClusterShard(AbstractModel):
|
|
|
13309
13337
|
self._Runid = params.get("Runid")
|
|
13310
13338
|
self._RunId = params.get("RunId")
|
|
13311
13339
|
self._Connected = params.get("Connected")
|
|
13340
|
+
self._ZoneId = params.get("ZoneId")
|
|
13341
|
+
self._ReplicasNodeId = params.get("ReplicasNodeId")
|
|
13312
13342
|
memeber_set = set(params.keys())
|
|
13313
13343
|
for name, value in vars(self).items():
|
|
13314
13344
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-redis
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1483
|
|
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.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1483
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1483
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1482
|
{tencentcloud_sdk_python_redis-3.0.1482 → tencentcloud_sdk_python_redis-3.0.1483}/README.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|