tencentcloud-sdk-python-dts 3.0.1272__tar.gz → 3.0.1282__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-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/setup.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/dts/v20211206/models.py +32 -2
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud_sdk_python_dts.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dts-3.0.1282/tencentcloud_sdk_python_dts.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dts-3.0.1272/tencentcloud_sdk_python_dts.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/README.rst +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/dts/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/dts/v20180330/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/dts/v20180330/dts_client.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/dts/v20180330/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/dts/v20180330/models.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/dts/v20211206/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/dts/v20211206/dts_client.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud/dts/v20211206/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud_sdk_python_dts.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud_sdk_python_dts.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1272 → tencentcloud-sdk-python-dts-3.0.1282}/tencentcloud_sdk_python_dts.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-dts',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1282"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dts SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -5796,7 +5796,7 @@ class DescribeMigrateDBInstancesRequest(AbstractModel):
|
|
|
5796
5796
|
|
|
5797
5797
|
def __init__(self):
|
|
5798
5798
|
r"""
|
|
5799
|
-
:param _DatabaseType: 数据库类型,如mysql
|
|
5799
|
+
:param _DatabaseType: 数据库类型,如mysql,redis等
|
|
5800
5800
|
:type DatabaseType: str
|
|
5801
5801
|
:param _MigrateRole: 实例作为迁移的源还是目标,src(表示源),dst(表示目标)
|
|
5802
5802
|
:type MigrateRole: str
|
|
@@ -5830,7 +5830,7 @@ class DescribeMigrateDBInstancesRequest(AbstractModel):
|
|
|
5830
5830
|
|
|
5831
5831
|
@property
|
|
5832
5832
|
def DatabaseType(self):
|
|
5833
|
-
"""数据库类型,如mysql
|
|
5833
|
+
"""数据库类型,如mysql,redis等
|
|
5834
5834
|
:rtype: str
|
|
5835
5835
|
"""
|
|
5836
5836
|
return self._DatabaseType
|
|
@@ -16978,8 +16978,14 @@ class SubsErr(AbstractModel):
|
|
|
16978
16978
|
r"""
|
|
16979
16979
|
:param _Message: 报错信息
|
|
16980
16980
|
:type Message: str
|
|
16981
|
+
:param _Reason: 报错原因
|
|
16982
|
+
:type Reason: str
|
|
16983
|
+
:param _Solution: 建议的修复方案
|
|
16984
|
+
:type Solution: str
|
|
16981
16985
|
"""
|
|
16982
16986
|
self._Message = None
|
|
16987
|
+
self._Reason = None
|
|
16988
|
+
self._Solution = None
|
|
16983
16989
|
|
|
16984
16990
|
@property
|
|
16985
16991
|
def Message(self):
|
|
@@ -16992,9 +16998,33 @@ class SubsErr(AbstractModel):
|
|
|
16992
16998
|
def Message(self, Message):
|
|
16993
16999
|
self._Message = Message
|
|
16994
17000
|
|
|
17001
|
+
@property
|
|
17002
|
+
def Reason(self):
|
|
17003
|
+
"""报错原因
|
|
17004
|
+
:rtype: str
|
|
17005
|
+
"""
|
|
17006
|
+
return self._Reason
|
|
17007
|
+
|
|
17008
|
+
@Reason.setter
|
|
17009
|
+
def Reason(self, Reason):
|
|
17010
|
+
self._Reason = Reason
|
|
17011
|
+
|
|
17012
|
+
@property
|
|
17013
|
+
def Solution(self):
|
|
17014
|
+
"""建议的修复方案
|
|
17015
|
+
:rtype: str
|
|
17016
|
+
"""
|
|
17017
|
+
return self._Solution
|
|
17018
|
+
|
|
17019
|
+
@Solution.setter
|
|
17020
|
+
def Solution(self, Solution):
|
|
17021
|
+
self._Solution = Solution
|
|
17022
|
+
|
|
16995
17023
|
|
|
16996
17024
|
def _deserialize(self, params):
|
|
16997
17025
|
self._Message = params.get("Message")
|
|
17026
|
+
self._Reason = params.get("Reason")
|
|
17027
|
+
self._Solution = params.get("Solution")
|
|
16998
17028
|
memeber_set = set(params.keys())
|
|
16999
17029
|
for name, value in vars(self).items():
|
|
17000
17030
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1282
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1272
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|