tencentcloud-sdk-python-cdwch 3.1.7__tar.gz → 3.1.14__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.14}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/setup.py +1 -1
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud/cdwch/v20200915/models.py +45 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud_sdk_python_cdwch.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cdwch-3.1.14/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.14}/README.rst +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud/cdwch/__init__.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud/cdwch/v20200915/__init__.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud/cdwch/v20200915/cdwch_client.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud/cdwch/v20200915/cdwch_client_async.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud/cdwch/v20200915/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud_sdk_python_cdwch.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/tencentcloud_sdk_python_cdwch.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.7 → tencentcloud_sdk_python_cdwch-3.1.14}/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.14
|
|
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.14
|
|
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.14,<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:]
|
|
@@ -1162,6 +1177,10 @@ class CnInstanceInfo(AbstractModel):
|
|
|
1162
1177
|
:type InstanceID: str
|
|
1163
1178
|
:param _Resources: 无
|
|
1164
1179
|
:type Resources: list of CNResource
|
|
1180
|
+
:param _IsSecondaryZone: desc
|
|
1181
|
+
:type IsSecondaryZone: str
|
|
1182
|
+
:param _SecondaryZoneInfo: desc
|
|
1183
|
+
:type SecondaryZoneInfo: str
|
|
1165
1184
|
"""
|
|
1166
1185
|
self._ID = None
|
|
1167
1186
|
self._InstanceType = None
|
|
@@ -1171,6 +1190,8 @@ class CnInstanceInfo(AbstractModel):
|
|
|
1171
1190
|
self._InstanceStateInfo = None
|
|
1172
1191
|
self._InstanceID = None
|
|
1173
1192
|
self._Resources = None
|
|
1193
|
+
self._IsSecondaryZone = None
|
|
1194
|
+
self._SecondaryZoneInfo = None
|
|
1174
1195
|
|
|
1175
1196
|
@property
|
|
1176
1197
|
def ID(self):
|
|
@@ -1260,6 +1281,28 @@ class CnInstanceInfo(AbstractModel):
|
|
|
1260
1281
|
def Resources(self, Resources):
|
|
1261
1282
|
self._Resources = Resources
|
|
1262
1283
|
|
|
1284
|
+
@property
|
|
1285
|
+
def IsSecondaryZone(self):
|
|
1286
|
+
r"""desc
|
|
1287
|
+
:rtype: str
|
|
1288
|
+
"""
|
|
1289
|
+
return self._IsSecondaryZone
|
|
1290
|
+
|
|
1291
|
+
@IsSecondaryZone.setter
|
|
1292
|
+
def IsSecondaryZone(self, IsSecondaryZone):
|
|
1293
|
+
self._IsSecondaryZone = IsSecondaryZone
|
|
1294
|
+
|
|
1295
|
+
@property
|
|
1296
|
+
def SecondaryZoneInfo(self):
|
|
1297
|
+
r"""desc
|
|
1298
|
+
:rtype: str
|
|
1299
|
+
"""
|
|
1300
|
+
return self._SecondaryZoneInfo
|
|
1301
|
+
|
|
1302
|
+
@SecondaryZoneInfo.setter
|
|
1303
|
+
def SecondaryZoneInfo(self, SecondaryZoneInfo):
|
|
1304
|
+
self._SecondaryZoneInfo = SecondaryZoneInfo
|
|
1305
|
+
|
|
1263
1306
|
|
|
1264
1307
|
def _deserialize(self, params):
|
|
1265
1308
|
self._ID = params.get("ID")
|
|
@@ -1277,6 +1320,8 @@ class CnInstanceInfo(AbstractModel):
|
|
|
1277
1320
|
obj = CNResource()
|
|
1278
1321
|
obj._deserialize(item)
|
|
1279
1322
|
self._Resources.append(obj)
|
|
1323
|
+
self._IsSecondaryZone = params.get("IsSecondaryZone")
|
|
1324
|
+
self._SecondaryZoneInfo = params.get("SecondaryZoneInfo")
|
|
1280
1325
|
memeber_set = set(params.keys())
|
|
1281
1326
|
for name, value in vars(self).items():
|
|
1282
1327
|
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.14
|
|
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.14
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.14
|
|
@@ -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
|