tencentcloud-sdk-python-cynosdb 3.0.1485__tar.gz → 3.1.10__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_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/setup.py +2 -1
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud_sdk_python_cynosdb-3.1.10/tencentcloud/cynosdb/v20190107/cynosdb_client_async.py +3086 -0
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud/cynosdb/v20190107/models.py +240 -10
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud_sdk_python_cynosdb.egg-info/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud_sdk_python_cynosdb.egg-info/SOURCES.txt +1 -0
- tencentcloud_sdk_python_cynosdb-3.1.10/tencentcloud_sdk_python_cynosdb.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cynosdb-3.0.1485/tencentcloud_sdk_python_cynosdb.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/README.rst +0 -0
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud/cynosdb/__init__.py +0 -0
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud/cynosdb/v20190107/__init__.py +0 -0
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud/cynosdb/v20190107/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud_sdk_python_cynosdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/tencentcloud_sdk_python_cynosdb.egg-info/top_level.txt +0 -0
{tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cynosdb
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1.10
|
|
4
4
|
Summary: Tencent Cloud Cynosdb 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.10
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
{tencentcloud_sdk_python_cynosdb-3.0.1485 → tencentcloud_sdk_python_cynosdb-3.1.10}/setup.py
RENAMED
|
@@ -8,7 +8,8 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cynosdb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.10,<4.0.0"],
|
|
12
|
+
|
|
12
13
|
version=tencentcloud.__version__,
|
|
13
14
|
description='Tencent Cloud Cynosdb SDK for Python',
|
|
14
15
|
long_description=open('README.rst').read(),
|
|
@@ -2694,6 +2694,29 @@ class CynosdbClient(AbstractClient):
|
|
|
2694
2694
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2695
2695
|
|
|
2696
2696
|
|
|
2697
|
+
def ModifyClusterGlobalEncryption(self, request):
|
|
2698
|
+
r"""开关全局加密
|
|
2699
|
+
|
|
2700
|
+
:param request: Request instance for ModifyClusterGlobalEncryption.
|
|
2701
|
+
:type request: :class:`tencentcloud.cynosdb.v20190107.models.ModifyClusterGlobalEncryptionRequest`
|
|
2702
|
+
:rtype: :class:`tencentcloud.cynosdb.v20190107.models.ModifyClusterGlobalEncryptionResponse`
|
|
2703
|
+
|
|
2704
|
+
"""
|
|
2705
|
+
try:
|
|
2706
|
+
params = request._serialize()
|
|
2707
|
+
headers = request.headers
|
|
2708
|
+
body = self.call("ModifyClusterGlobalEncryption", params, headers=headers)
|
|
2709
|
+
response = json.loads(body)
|
|
2710
|
+
model = models.ModifyClusterGlobalEncryptionResponse()
|
|
2711
|
+
model._deserialize(response["Response"])
|
|
2712
|
+
return model
|
|
2713
|
+
except Exception as e:
|
|
2714
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2715
|
+
raise
|
|
2716
|
+
else:
|
|
2717
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2718
|
+
|
|
2719
|
+
|
|
2697
2720
|
def ModifyClusterName(self, request):
|
|
2698
2721
|
r"""本接口(ModifyClusterName)用于修改集群名称。
|
|
2699
2722
|
|