tencentcloud-sdk-python-dbdc 3.1.152__tar.gz → 3.1.163__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.152 → tencentcloud_sdk_python_dbdc-3.1.163}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/setup.py +1 -1
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud/dbdc/v20201029/models.py +15 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud_sdk_python_dbdc.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_dbdc-3.1.163/tencentcloud_sdk_python_dbdc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_dbdc-3.1.152/tencentcloud_sdk_python_dbdc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/README.rst +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/setup.cfg +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud/dbdc/__init__.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud/dbdc/v20201029/__init__.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud/dbdc/v20201029/dbdc_client.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud/dbdc/v20201029/dbdc_client_async.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud/dbdc/v20201029/errorcodes.py +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud_sdk_python_dbdc.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/tencentcloud_sdk_python_dbdc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_dbdc-3.1.152 → tencentcloud_sdk_python_dbdc-3.1.163}/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.163
|
|
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.163
|
|
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.163,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Dbdc SDK for Python',
|
|
@@ -8612,10 +8612,13 @@ class RemoveNodesFromDBCustomClusterRequest(AbstractModel):
|
|
|
8612
8612
|
:type NodeIds: list of str
|
|
8613
8613
|
:param _LoginSettings: <p>节点的登录参数</p>
|
|
8614
8614
|
:type LoginSettings: :class:`tencentcloud.dbdc.v20201029.models.LoginSettings`
|
|
8615
|
+
:param _Force: <p>当节点中还有业务 Pod 在运行,默认会拦截从集群中移除节点的操作。如果该参数为 true,表示强制执行此操作。</p><p>枚举值:</p><ul><li>true: 是</li><li>false: 否</li></ul><p>默认值:false</p>
|
|
8616
|
+
:type Force: bool
|
|
8615
8617
|
"""
|
|
8616
8618
|
self._ClusterId = None
|
|
8617
8619
|
self._NodeIds = None
|
|
8618
8620
|
self._LoginSettings = None
|
|
8621
|
+
self._Force = None
|
|
8619
8622
|
|
|
8620
8623
|
@property
|
|
8621
8624
|
def ClusterId(self):
|
|
@@ -8650,6 +8653,17 @@ class RemoveNodesFromDBCustomClusterRequest(AbstractModel):
|
|
|
8650
8653
|
def LoginSettings(self, LoginSettings):
|
|
8651
8654
|
self._LoginSettings = LoginSettings
|
|
8652
8655
|
|
|
8656
|
+
@property
|
|
8657
|
+
def Force(self):
|
|
8658
|
+
r"""<p>当节点中还有业务 Pod 在运行,默认会拦截从集群中移除节点的操作。如果该参数为 true,表示强制执行此操作。</p><p>枚举值:</p><ul><li>true: 是</li><li>false: 否</li></ul><p>默认值:false</p>
|
|
8659
|
+
:rtype: bool
|
|
8660
|
+
"""
|
|
8661
|
+
return self._Force
|
|
8662
|
+
|
|
8663
|
+
@Force.setter
|
|
8664
|
+
def Force(self, Force):
|
|
8665
|
+
self._Force = Force
|
|
8666
|
+
|
|
8653
8667
|
|
|
8654
8668
|
def _deserialize(self, params):
|
|
8655
8669
|
self._ClusterId = params.get("ClusterId")
|
|
@@ -8657,6 +8671,7 @@ class RemoveNodesFromDBCustomClusterRequest(AbstractModel):
|
|
|
8657
8671
|
if params.get("LoginSettings") is not None:
|
|
8658
8672
|
self._LoginSettings = LoginSettings()
|
|
8659
8673
|
self._LoginSettings._deserialize(params.get("LoginSettings"))
|
|
8674
|
+
self._Force = params.get("Force")
|
|
8660
8675
|
memeber_set = set(params.keys())
|
|
8661
8676
|
for name, value in vars(self).items():
|
|
8662
8677
|
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.163
|
|
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.163
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.163
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.152
|
|
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
|