tencentcloud-sdk-python-dbdc 3.1.150__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_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/setup.py +1 -1
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud/dbdc/v20201029/models.py +34 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud_sdk_python_dbdc.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_dbdc-3.1.151/tencentcloud_sdk_python_dbdc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_dbdc-3.1.150/tencentcloud_sdk_python_dbdc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/README.rst +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/setup.cfg +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud/dbdc/__init__.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud/dbdc/v20201029/__init__.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud/dbdc/v20201029/dbdc_client.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud/dbdc/v20201029/dbdc_client_async.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud/dbdc/v20201029/errorcodes.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud_sdk_python_dbdc.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud_sdk_python_dbdc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.150 → tencentcloud_sdk_python_dbdc-3.1.151}/tencentcloud_sdk_python_dbdc.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-dbdc
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.151
|
|
4
4
|
Summary: Tencent Cloud Dbdc 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-dbdc',
|
|
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 Dbdc SDK for Python',
|
|
@@ -1261,6 +1261,9 @@ class DBCustomClusterNode(AbstractModel):
|
|
|
1261
1261
|
:param _EniIP: <p>当选择网络模式为三层网络联通模式时,此处的IP地址则为用户可访问的地址。</p>
|
|
1262
1262
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1263
1263
|
:type EniIP: str
|
|
1264
|
+
:param _SecurityGroupIds: <p>节点绑定的安全组</p>
|
|
1265
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1266
|
+
:type SecurityGroupIds: list of str
|
|
1264
1267
|
"""
|
|
1265
1268
|
self._NodeId = None
|
|
1266
1269
|
self._NodeName = None
|
|
@@ -1271,6 +1274,7 @@ class DBCustomClusterNode(AbstractModel):
|
|
|
1271
1274
|
self._NodeType = None
|
|
1272
1275
|
self._NetworkMode = None
|
|
1273
1276
|
self._EniIP = None
|
|
1277
|
+
self._SecurityGroupIds = None
|
|
1274
1278
|
|
|
1275
1279
|
@property
|
|
1276
1280
|
def NodeId(self):
|
|
@@ -1373,6 +1377,18 @@ class DBCustomClusterNode(AbstractModel):
|
|
|
1373
1377
|
def EniIP(self, EniIP):
|
|
1374
1378
|
self._EniIP = EniIP
|
|
1375
1379
|
|
|
1380
|
+
@property
|
|
1381
|
+
def SecurityGroupIds(self):
|
|
1382
|
+
r"""<p>节点绑定的安全组</p>
|
|
1383
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1384
|
+
:rtype: list of str
|
|
1385
|
+
"""
|
|
1386
|
+
return self._SecurityGroupIds
|
|
1387
|
+
|
|
1388
|
+
@SecurityGroupIds.setter
|
|
1389
|
+
def SecurityGroupIds(self, SecurityGroupIds):
|
|
1390
|
+
self._SecurityGroupIds = SecurityGroupIds
|
|
1391
|
+
|
|
1376
1392
|
|
|
1377
1393
|
def _deserialize(self, params):
|
|
1378
1394
|
self._NodeId = params.get("NodeId")
|
|
@@ -1384,6 +1400,7 @@ class DBCustomClusterNode(AbstractModel):
|
|
|
1384
1400
|
self._NodeType = params.get("NodeType")
|
|
1385
1401
|
self._NetworkMode = params.get("NetworkMode")
|
|
1386
1402
|
self._EniIP = params.get("EniIP")
|
|
1403
|
+
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
|
1387
1404
|
memeber_set = set(params.keys())
|
|
1388
1405
|
for name, value in vars(self).items():
|
|
1389
1406
|
property_name = name[1:]
|
|
@@ -1765,6 +1782,9 @@ class DBCustomNode(AbstractModel):
|
|
|
1765
1782
|
:type NetworkMode: str
|
|
1766
1783
|
:param _EniIP: <p>当选择NetworkModeCrossTenantENI模式时,节点的访问IP地址</p>
|
|
1767
1784
|
:type EniIP: str
|
|
1785
|
+
:param _SecurityGroupIds: <p>节点绑定的安全组</p>
|
|
1786
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1787
|
+
:type SecurityGroupIds: list of str
|
|
1768
1788
|
"""
|
|
1769
1789
|
self._NodeId = None
|
|
1770
1790
|
self._NodeName = None
|
|
@@ -1793,6 +1813,7 @@ class DBCustomNode(AbstractModel):
|
|
|
1793
1813
|
self._HostIp = None
|
|
1794
1814
|
self._NetworkMode = None
|
|
1795
1815
|
self._EniIP = None
|
|
1816
|
+
self._SecurityGroupIds = None
|
|
1796
1817
|
|
|
1797
1818
|
@property
|
|
1798
1819
|
def NodeId(self):
|
|
@@ -2094,6 +2115,18 @@ class DBCustomNode(AbstractModel):
|
|
|
2094
2115
|
def EniIP(self, EniIP):
|
|
2095
2116
|
self._EniIP = EniIP
|
|
2096
2117
|
|
|
2118
|
+
@property
|
|
2119
|
+
def SecurityGroupIds(self):
|
|
2120
|
+
r"""<p>节点绑定的安全组</p>
|
|
2121
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2122
|
+
:rtype: list of str
|
|
2123
|
+
"""
|
|
2124
|
+
return self._SecurityGroupIds
|
|
2125
|
+
|
|
2126
|
+
@SecurityGroupIds.setter
|
|
2127
|
+
def SecurityGroupIds(self, SecurityGroupIds):
|
|
2128
|
+
self._SecurityGroupIds = SecurityGroupIds
|
|
2129
|
+
|
|
2097
2130
|
|
|
2098
2131
|
def _deserialize(self, params):
|
|
2099
2132
|
self._NodeId = params.get("NodeId")
|
|
@@ -2135,6 +2168,7 @@ class DBCustomNode(AbstractModel):
|
|
|
2135
2168
|
self._HostIp = params.get("HostIp")
|
|
2136
2169
|
self._NetworkMode = params.get("NetworkMode")
|
|
2137
2170
|
self._EniIP = params.get("EniIP")
|
|
2171
|
+
self._SecurityGroupIds = params.get("SecurityGroupIds")
|
|
2138
2172
|
memeber_set = set(params.keys())
|
|
2139
2173
|
for name, value in vars(self).items():
|
|
2140
2174
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-dbdc
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.151
|
|
4
4
|
Summary: Tencent Cloud Dbdc 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.150
|
|
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
|