tencentcloud-sdk-python-dts 3.0.1395__tar.gz → 3.0.1408__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.1395 → tencentcloud-sdk-python-dts-3.0.1408}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/setup.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/dts/v20211206/models.py +15 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud_sdk_python_dts.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dts-3.0.1408/tencentcloud_sdk_python_dts.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dts-3.0.1395/tencentcloud_sdk_python_dts.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/README.rst +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/dts/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/dts/v20180330/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/dts/v20180330/dts_client.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/dts/v20180330/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/dts/v20180330/models.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/dts/v20211206/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/dts/v20211206/dts_client.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud/dts/v20211206/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud_sdk_python_dts.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/tencentcloud_sdk_python_dts.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1395 → tencentcloud-sdk-python-dts-3.0.1408}/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.1408"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dts SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3439,6 +3439,8 @@ MongoDB可定义如下的参数:
|
|
|
3439
3439
|
:type DatabaseNetEnv: str
|
|
3440
3440
|
:param _ConnectType: tdsql连接方式:proxy-通过tdsql proxy主机访问各个set节点,注意只有在自研上云的网络环境下才能通过这种方式连接,Info中只需要提供proxy主机信息。set-直连set节点,如选择直连set方式,Info中需要正确填写proxy主机信息及所有set节点信息。源端是tdsqlmysql类型必填。
|
|
3441
3441
|
:type ConnectType: str
|
|
3442
|
+
:param _CcnOwnerUin: 云联网网关所属账号,如果云联网网关为其他账号资源需要填写
|
|
3443
|
+
:type CcnOwnerUin: str
|
|
3442
3444
|
"""
|
|
3443
3445
|
self._Region = None
|
|
3444
3446
|
self._AccessType = None
|
|
@@ -3449,6 +3451,7 @@ MongoDB可定义如下的参数:
|
|
|
3449
3451
|
self._ExtraAttr = None
|
|
3450
3452
|
self._DatabaseNetEnv = None
|
|
3451
3453
|
self._ConnectType = None
|
|
3454
|
+
self._CcnOwnerUin = None
|
|
3452
3455
|
|
|
3453
3456
|
@property
|
|
3454
3457
|
def Region(self):
|
|
@@ -3559,6 +3562,17 @@ MongoDB可定义如下的参数:
|
|
|
3559
3562
|
def ConnectType(self, ConnectType):
|
|
3560
3563
|
self._ConnectType = ConnectType
|
|
3561
3564
|
|
|
3565
|
+
@property
|
|
3566
|
+
def CcnOwnerUin(self):
|
|
3567
|
+
"""云联网网关所属账号,如果云联网网关为其他账号资源需要填写
|
|
3568
|
+
:rtype: str
|
|
3569
|
+
"""
|
|
3570
|
+
return self._CcnOwnerUin
|
|
3571
|
+
|
|
3572
|
+
@CcnOwnerUin.setter
|
|
3573
|
+
def CcnOwnerUin(self, CcnOwnerUin):
|
|
3574
|
+
self._CcnOwnerUin = CcnOwnerUin
|
|
3575
|
+
|
|
3562
3576
|
|
|
3563
3577
|
def _deserialize(self, params):
|
|
3564
3578
|
self._Region = params.get("Region")
|
|
@@ -3580,6 +3594,7 @@ MongoDB可定义如下的参数:
|
|
|
3580
3594
|
self._ExtraAttr.append(obj)
|
|
3581
3595
|
self._DatabaseNetEnv = params.get("DatabaseNetEnv")
|
|
3582
3596
|
self._ConnectType = params.get("ConnectType")
|
|
3597
|
+
self._CcnOwnerUin = params.get("CcnOwnerUin")
|
|
3583
3598
|
memeber_set = set(params.keys())
|
|
3584
3599
|
for name, value in vars(self).items():
|
|
3585
3600
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1408
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1395
|
|
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
|