tencentcloud-sdk-python-cdwch 3.1.7__tar.gz → 3.1.11__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_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/setup.py +1 -1
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/models.py +15 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud_sdk_python_cdwch.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cdwch-3.1.11/tencentcloud_sdk_python_cdwch.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cdwch-3.1.7/tencentcloud_sdk_python_cdwch.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/README.rst +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/__init__.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/__init__.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/cdwch_client.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/cdwch_client_async.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud_sdk_python_cdwch.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud_sdk_python_cdwch.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud_sdk_python_cdwch.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cdwch
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.11
|
|
4
4
|
Summary: Tencent Cloud Cdwch 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.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.11
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cdwch',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.11,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cdwch SDK for Python',
|
|
@@ -881,11 +881,14 @@ class CkUserAlterInfo(AbstractModel):
|
|
|
881
881
|
:type PassWord: str
|
|
882
882
|
:param _Describe: 描述
|
|
883
883
|
:type Describe: str
|
|
884
|
+
:param _OriginalPassword: 账户的当前密码
|
|
885
|
+
:type OriginalPassword: str
|
|
884
886
|
"""
|
|
885
887
|
self._InstanceId = None
|
|
886
888
|
self._UserName = None
|
|
887
889
|
self._PassWord = None
|
|
888
890
|
self._Describe = None
|
|
891
|
+
self._OriginalPassword = None
|
|
889
892
|
|
|
890
893
|
@property
|
|
891
894
|
def InstanceId(self):
|
|
@@ -931,12 +934,24 @@ class CkUserAlterInfo(AbstractModel):
|
|
|
931
934
|
def Describe(self, Describe):
|
|
932
935
|
self._Describe = Describe
|
|
933
936
|
|
|
937
|
+
@property
|
|
938
|
+
def OriginalPassword(self):
|
|
939
|
+
r"""账户的当前密码
|
|
940
|
+
:rtype: str
|
|
941
|
+
"""
|
|
942
|
+
return self._OriginalPassword
|
|
943
|
+
|
|
944
|
+
@OriginalPassword.setter
|
|
945
|
+
def OriginalPassword(self, OriginalPassword):
|
|
946
|
+
self._OriginalPassword = OriginalPassword
|
|
947
|
+
|
|
934
948
|
|
|
935
949
|
def _deserialize(self, params):
|
|
936
950
|
self._InstanceId = params.get("InstanceId")
|
|
937
951
|
self._UserName = params.get("UserName")
|
|
938
952
|
self._PassWord = params.get("PassWord")
|
|
939
953
|
self._Describe = params.get("Describe")
|
|
954
|
+
self._OriginalPassword = params.get("OriginalPassword")
|
|
940
955
|
memeber_set = set(params.keys())
|
|
941
956
|
for name, value in vars(self).items():
|
|
942
957
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cdwch
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.11
|
|
4
4
|
Summary: Tencent Cloud Cdwch 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.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.11
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.11
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.7
|
|
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
|