tencentcloud-sdk-python-dcdb 3.0.1224__tar.gz → 3.0.1228__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-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/setup.py +1 -1
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud/dcdb/v20180411/models.py +24 -0
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud_sdk_python_dcdb.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dcdb-3.0.1228/tencentcloud_sdk_python_dcdb.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dcdb-3.0.1224/tencentcloud_sdk_python_dcdb.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/README.rst +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud/dcdb/__init__.py +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud/dcdb/v20180411/__init__.py +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud/dcdb/v20180411/dcdb_client.py +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud/dcdb/v20180411/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud_sdk_python_dcdb.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud_sdk_python_dcdb.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dcdb-3.0.1224 → tencentcloud-sdk-python-dcdb-3.0.1228}/tencentcloud_sdk_python_dcdb.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-dcdb',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1228"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dcdb SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -938,6 +938,8 @@ class CreateAccountRequest(AbstractModel):
|
|
|
938
938
|
:type SlaveConst: int
|
|
939
939
|
:param _MaxUserConnections: 用户最大连接数限制参数。不传或者传0表示为不限制,对应max_user_connections参数,目前10.1内核版本不支持设置。
|
|
940
940
|
:type MaxUserConnections: int
|
|
941
|
+
:param _EncryptedPassword: 使用GetPublicKey返回的RSA2048公钥加密后的密码
|
|
942
|
+
:type EncryptedPassword: str
|
|
941
943
|
"""
|
|
942
944
|
self._InstanceId = None
|
|
943
945
|
self._UserName = None
|
|
@@ -948,6 +950,7 @@ class CreateAccountRequest(AbstractModel):
|
|
|
948
950
|
self._DelayThresh = None
|
|
949
951
|
self._SlaveConst = None
|
|
950
952
|
self._MaxUserConnections = None
|
|
953
|
+
self._EncryptedPassword = None
|
|
951
954
|
|
|
952
955
|
@property
|
|
953
956
|
def InstanceId(self):
|
|
@@ -1021,6 +1024,14 @@ class CreateAccountRequest(AbstractModel):
|
|
|
1021
1024
|
def MaxUserConnections(self, MaxUserConnections):
|
|
1022
1025
|
self._MaxUserConnections = MaxUserConnections
|
|
1023
1026
|
|
|
1027
|
+
@property
|
|
1028
|
+
def EncryptedPassword(self):
|
|
1029
|
+
return self._EncryptedPassword
|
|
1030
|
+
|
|
1031
|
+
@EncryptedPassword.setter
|
|
1032
|
+
def EncryptedPassword(self, EncryptedPassword):
|
|
1033
|
+
self._EncryptedPassword = EncryptedPassword
|
|
1034
|
+
|
|
1024
1035
|
|
|
1025
1036
|
def _deserialize(self, params):
|
|
1026
1037
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -1032,6 +1043,7 @@ class CreateAccountRequest(AbstractModel):
|
|
|
1032
1043
|
self._DelayThresh = params.get("DelayThresh")
|
|
1033
1044
|
self._SlaveConst = params.get("SlaveConst")
|
|
1034
1045
|
self._MaxUserConnections = params.get("MaxUserConnections")
|
|
1046
|
+
self._EncryptedPassword = params.get("EncryptedPassword")
|
|
1035
1047
|
memeber_set = set(params.keys())
|
|
1036
1048
|
for name, value in vars(self).items():
|
|
1037
1049
|
property_name = name[1:]
|
|
@@ -11842,11 +11854,14 @@ class ResetAccountPasswordRequest(AbstractModel):
|
|
|
11842
11854
|
:type Host: str
|
|
11843
11855
|
:param _Password: 新密码,由字母、数字或常见符号组成,不能包含分号、单引号和双引号,长度为6~32位。
|
|
11844
11856
|
:type Password: str
|
|
11857
|
+
:param _EncryptedPassword: 使用GetPublicKey返回的RSA2048公钥加密后的密码,加密算法是PKCS1v15
|
|
11858
|
+
:type EncryptedPassword: str
|
|
11845
11859
|
"""
|
|
11846
11860
|
self._InstanceId = None
|
|
11847
11861
|
self._UserName = None
|
|
11848
11862
|
self._Host = None
|
|
11849
11863
|
self._Password = None
|
|
11864
|
+
self._EncryptedPassword = None
|
|
11850
11865
|
|
|
11851
11866
|
@property
|
|
11852
11867
|
def InstanceId(self):
|
|
@@ -11880,12 +11895,21 @@ class ResetAccountPasswordRequest(AbstractModel):
|
|
|
11880
11895
|
def Password(self, Password):
|
|
11881
11896
|
self._Password = Password
|
|
11882
11897
|
|
|
11898
|
+
@property
|
|
11899
|
+
def EncryptedPassword(self):
|
|
11900
|
+
return self._EncryptedPassword
|
|
11901
|
+
|
|
11902
|
+
@EncryptedPassword.setter
|
|
11903
|
+
def EncryptedPassword(self, EncryptedPassword):
|
|
11904
|
+
self._EncryptedPassword = EncryptedPassword
|
|
11905
|
+
|
|
11883
11906
|
|
|
11884
11907
|
def _deserialize(self, params):
|
|
11885
11908
|
self._InstanceId = params.get("InstanceId")
|
|
11886
11909
|
self._UserName = params.get("UserName")
|
|
11887
11910
|
self._Host = params.get("Host")
|
|
11888
11911
|
self._Password = params.get("Password")
|
|
11912
|
+
self._EncryptedPassword = params.get("EncryptedPassword")
|
|
11889
11913
|
memeber_set = set(params.keys())
|
|
11890
11914
|
for name, value in vars(self).items():
|
|
11891
11915
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1228
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1224
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|