tencentcloud-sdk-python-dts 3.0.1274__tar.gz → 3.0.1285__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.1274 → tencentcloud-sdk-python-dts-3.0.1285}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/setup.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/dts/v20211206/models.py +30 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud_sdk_python_dts.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dts-3.0.1285/tencentcloud_sdk_python_dts.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dts-3.0.1274/tencentcloud_sdk_python_dts.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/README.rst +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/dts/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/dts/v20180330/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/dts/v20180330/dts_client.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/dts/v20180330/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/dts/v20180330/models.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/dts/v20211206/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/dts/v20211206/dts_client.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud/dts/v20211206/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud_sdk_python_dts.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/tencentcloud_sdk_python_dts.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1274 → tencentcloud-sdk-python-dts-3.0.1285}/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.1285"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dts SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -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.1285
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1274
|
|
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
|