tencentcloud-sdk-python-dts 3.0.1369__tar.gz → 3.0.1370__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.1369 → tencentcloud-sdk-python-dts-3.0.1370}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/setup.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/dts/v20211206/models.py +0 -15
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud_sdk_python_dts.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dts-3.0.1370/tencentcloud_sdk_python_dts.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dts-3.0.1369/tencentcloud_sdk_python_dts.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/README.rst +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/dts/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/dts/v20180330/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/dts/v20180330/dts_client.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/dts/v20180330/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/dts/v20180330/models.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/dts/v20211206/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/dts/v20211206/dts_client.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud/dts/v20211206/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud_sdk_python_dts.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/tencentcloud_sdk_python_dts.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1369 → tencentcloud-sdk-python-dts-3.0.1370}/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.1370"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dts SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -11983,14 +11983,11 @@ class ModifyConsumerGroupPasswordRequest(AbstractModel):
|
|
|
11983
11983
|
:type ConsumerGroupName: str
|
|
11984
11984
|
:param _NewPassword: 新密码。字符长度不小于3,不大于32
|
|
11985
11985
|
:type NewPassword: str
|
|
11986
|
-
:param _OldPassword: 旧密码,非必选
|
|
11987
|
-
:type OldPassword: str
|
|
11988
11986
|
"""
|
|
11989
11987
|
self._SubscribeId = None
|
|
11990
11988
|
self._AccountName = None
|
|
11991
11989
|
self._ConsumerGroupName = None
|
|
11992
11990
|
self._NewPassword = None
|
|
11993
|
-
self._OldPassword = None
|
|
11994
11991
|
|
|
11995
11992
|
@property
|
|
11996
11993
|
def SubscribeId(self):
|
|
@@ -12036,24 +12033,12 @@ class ModifyConsumerGroupPasswordRequest(AbstractModel):
|
|
|
12036
12033
|
def NewPassword(self, NewPassword):
|
|
12037
12034
|
self._NewPassword = NewPassword
|
|
12038
12035
|
|
|
12039
|
-
@property
|
|
12040
|
-
def OldPassword(self):
|
|
12041
|
-
"""旧密码,非必选
|
|
12042
|
-
:rtype: str
|
|
12043
|
-
"""
|
|
12044
|
-
return self._OldPassword
|
|
12045
|
-
|
|
12046
|
-
@OldPassword.setter
|
|
12047
|
-
def OldPassword(self, OldPassword):
|
|
12048
|
-
self._OldPassword = OldPassword
|
|
12049
|
-
|
|
12050
12036
|
|
|
12051
12037
|
def _deserialize(self, params):
|
|
12052
12038
|
self._SubscribeId = params.get("SubscribeId")
|
|
12053
12039
|
self._AccountName = params.get("AccountName")
|
|
12054
12040
|
self._ConsumerGroupName = params.get("ConsumerGroupName")
|
|
12055
12041
|
self._NewPassword = params.get("NewPassword")
|
|
12056
|
-
self._OldPassword = params.get("OldPassword")
|
|
12057
12042
|
memeber_set = set(params.keys())
|
|
12058
12043
|
for name, value in vars(self).items():
|
|
12059
12044
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1370
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1369
|
|
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
|