tencentcloud-sdk-python-cdwch 3.1.6__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.6 → tencentcloud_sdk_python_cdwch-3.1.11}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/setup.py +1 -1
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/models.py +45 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → 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.6/tencentcloud_sdk_python_cdwch.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/README.rst +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/__init__.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/__init__.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/cdwch_client.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/cdwch_client_async.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud/cdwch/v20200915/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud_sdk_python_cdwch.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → tencentcloud_sdk_python_cdwch-3.1.11}/tencentcloud_sdk_python_cdwch.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cdwch-3.1.6 → 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:]
|
|
@@ -966,6 +981,10 @@ class ClusterConfigsInfoFromEMR(AbstractModel):
|
|
|
966
981
|
:type NeedRestart: int
|
|
967
982
|
:param _FilePath: 保存配置文件的路径
|
|
968
983
|
:type FilePath: str
|
|
984
|
+
:param _Ip: 节点级配置的ip,当ConfigLevel取值为node时,此参数必选;
|
|
985
|
+
:type Ip: str
|
|
986
|
+
:param _ConfigLevel: 可选参数,参数取值:node,cluster; node: 节点级参数配置,cluster: 实例级参数配置;
|
|
987
|
+
:type ConfigLevel: str
|
|
969
988
|
"""
|
|
970
989
|
self._FileName = None
|
|
971
990
|
self._FileConf = None
|
|
@@ -973,6 +992,8 @@ class ClusterConfigsInfoFromEMR(AbstractModel):
|
|
|
973
992
|
self._OriParam = None
|
|
974
993
|
self._NeedRestart = None
|
|
975
994
|
self._FilePath = None
|
|
995
|
+
self._Ip = None
|
|
996
|
+
self._ConfigLevel = None
|
|
976
997
|
|
|
977
998
|
@property
|
|
978
999
|
def FileName(self):
|
|
@@ -1040,6 +1061,28 @@ class ClusterConfigsInfoFromEMR(AbstractModel):
|
|
|
1040
1061
|
def FilePath(self, FilePath):
|
|
1041
1062
|
self._FilePath = FilePath
|
|
1042
1063
|
|
|
1064
|
+
@property
|
|
1065
|
+
def Ip(self):
|
|
1066
|
+
r"""节点级配置的ip,当ConfigLevel取值为node时,此参数必选;
|
|
1067
|
+
:rtype: str
|
|
1068
|
+
"""
|
|
1069
|
+
return self._Ip
|
|
1070
|
+
|
|
1071
|
+
@Ip.setter
|
|
1072
|
+
def Ip(self, Ip):
|
|
1073
|
+
self._Ip = Ip
|
|
1074
|
+
|
|
1075
|
+
@property
|
|
1076
|
+
def ConfigLevel(self):
|
|
1077
|
+
r"""可选参数,参数取值:node,cluster; node: 节点级参数配置,cluster: 实例级参数配置;
|
|
1078
|
+
:rtype: str
|
|
1079
|
+
"""
|
|
1080
|
+
return self._ConfigLevel
|
|
1081
|
+
|
|
1082
|
+
@ConfigLevel.setter
|
|
1083
|
+
def ConfigLevel(self, ConfigLevel):
|
|
1084
|
+
self._ConfigLevel = ConfigLevel
|
|
1085
|
+
|
|
1043
1086
|
|
|
1044
1087
|
def _deserialize(self, params):
|
|
1045
1088
|
self._FileName = params.get("FileName")
|
|
@@ -1048,6 +1091,8 @@ class ClusterConfigsInfoFromEMR(AbstractModel):
|
|
|
1048
1091
|
self._OriParam = params.get("OriParam")
|
|
1049
1092
|
self._NeedRestart = params.get("NeedRestart")
|
|
1050
1093
|
self._FilePath = params.get("FilePath")
|
|
1094
|
+
self._Ip = params.get("Ip")
|
|
1095
|
+
self._ConfigLevel = params.get("ConfigLevel")
|
|
1051
1096
|
memeber_set = set(params.keys())
|
|
1052
1097
|
for name, value in vars(self).items():
|
|
1053
1098
|
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.6
|
|
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
|