tencentcloud-sdk-python-ssl 3.0.1431__tar.gz → 3.0.1432__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-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/setup.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/v20191205/models.py +15 -0
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ssl-3.0.1432/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ssl-3.0.1431/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/README.rst +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/v20191205/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1431 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud_sdk_python_ssl.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-ssl',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1432,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ssl SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -21872,6 +21872,8 @@ class UploadCertificateRequest(AbstractModel):
|
|
|
21872
21872
|
:type Tags: list of Tags
|
|
21873
21873
|
:param _Repeatable: 相同的证书是否允许重复上传; true:允许上传相同指纹的证书; false:不允许上传相同指纹的证书; 默认值:true
|
|
21874
21874
|
:type Repeatable: bool
|
|
21875
|
+
:param _KeyPassword: 私钥密码
|
|
21876
|
+
:type KeyPassword: str
|
|
21875
21877
|
"""
|
|
21876
21878
|
self._CertificatePublicKey = None
|
|
21877
21879
|
self._CertificatePrivateKey = None
|
|
@@ -21881,6 +21883,7 @@ class UploadCertificateRequest(AbstractModel):
|
|
|
21881
21883
|
self._CertificateUse = None
|
|
21882
21884
|
self._Tags = None
|
|
21883
21885
|
self._Repeatable = None
|
|
21886
|
+
self._KeyPassword = None
|
|
21884
21887
|
|
|
21885
21888
|
@property
|
|
21886
21889
|
def CertificatePublicKey(self):
|
|
@@ -21970,6 +21973,17 @@ class UploadCertificateRequest(AbstractModel):
|
|
|
21970
21973
|
def Repeatable(self, Repeatable):
|
|
21971
21974
|
self._Repeatable = Repeatable
|
|
21972
21975
|
|
|
21976
|
+
@property
|
|
21977
|
+
def KeyPassword(self):
|
|
21978
|
+
"""私钥密码
|
|
21979
|
+
:rtype: str
|
|
21980
|
+
"""
|
|
21981
|
+
return self._KeyPassword
|
|
21982
|
+
|
|
21983
|
+
@KeyPassword.setter
|
|
21984
|
+
def KeyPassword(self, KeyPassword):
|
|
21985
|
+
self._KeyPassword = KeyPassword
|
|
21986
|
+
|
|
21973
21987
|
|
|
21974
21988
|
def _deserialize(self, params):
|
|
21975
21989
|
self._CertificatePublicKey = params.get("CertificatePublicKey")
|
|
@@ -21985,6 +21999,7 @@ class UploadCertificateRequest(AbstractModel):
|
|
|
21985
21999
|
obj._deserialize(item)
|
|
21986
22000
|
self._Tags.append(obj)
|
|
21987
22001
|
self._Repeatable = params.get("Repeatable")
|
|
22002
|
+
self._KeyPassword = params.get("KeyPassword")
|
|
21988
22003
|
memeber_set = set(params.keys())
|
|
21989
22004
|
for name, value in vars(self).items():
|
|
21990
22005
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1432
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1431
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|