tencentcloud-sdk-python-cdb 3.0.1255__tar.gz → 3.0.1257__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-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/setup.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud/cdb/v20170320/models.py +12 -0
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud_sdk_python_cdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cdb-3.0.1257/tencentcloud_sdk_python_cdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cdb-3.0.1255/tencentcloud_sdk_python_cdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/README.rst +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud/cdb/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud/cdb/v20170320/__init__.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud/cdb/v20170320/cdb_client.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud/cdb/v20170320/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud_sdk_python_cdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud_sdk_python_cdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cdb-3.0.1255 → tencentcloud-sdk-python-cdb-3.0.1257}/tencentcloud_sdk_python_cdb.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-cdb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1257"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -26459,9 +26459,12 @@ class ReadonlyNode(AbstractModel):
|
|
|
26459
26459
|
:type IsRandomZone: str
|
|
26460
26460
|
:param _Zone: 指定该节点分布在哪个可用区。
|
|
26461
26461
|
:type Zone: str
|
|
26462
|
+
:param _NodeId: 升级集群版实例时,如果要调整只读节点可用区,需要指定节点id。
|
|
26463
|
+
:type NodeId: str
|
|
26462
26464
|
"""
|
|
26463
26465
|
self._IsRandomZone = None
|
|
26464
26466
|
self._Zone = None
|
|
26467
|
+
self._NodeId = None
|
|
26465
26468
|
|
|
26466
26469
|
@property
|
|
26467
26470
|
def IsRandomZone(self):
|
|
@@ -26479,10 +26482,19 @@ class ReadonlyNode(AbstractModel):
|
|
|
26479
26482
|
def Zone(self, Zone):
|
|
26480
26483
|
self._Zone = Zone
|
|
26481
26484
|
|
|
26485
|
+
@property
|
|
26486
|
+
def NodeId(self):
|
|
26487
|
+
return self._NodeId
|
|
26488
|
+
|
|
26489
|
+
@NodeId.setter
|
|
26490
|
+
def NodeId(self, NodeId):
|
|
26491
|
+
self._NodeId = NodeId
|
|
26492
|
+
|
|
26482
26493
|
|
|
26483
26494
|
def _deserialize(self, params):
|
|
26484
26495
|
self._IsRandomZone = params.get("IsRandomZone")
|
|
26485
26496
|
self._Zone = params.get("Zone")
|
|
26497
|
+
self._NodeId = params.get("NodeId")
|
|
26486
26498
|
memeber_set = set(params.keys())
|
|
26487
26499
|
for name, value in vars(self).items():
|
|
26488
26500
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1257
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1255
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|