tencentcloud-sdk-python-ssl 3.0.1423__tar.gz → 3.0.1427__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.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/setup.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/v20191205/models.py +75 -0
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ssl-3.0.1427/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ssl-3.0.1423/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/README.rst +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/v20191205/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1423 → tencentcloud-sdk-python-ssl-3.0.1427}/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.1427,<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(),
|
|
@@ -6721,6 +6721,10 @@ class DeployRecordDetail(AbstractModel):
|
|
|
6721
6721
|
:type Region: str
|
|
6722
6722
|
:param _Url: 部署CLB监听器的Url
|
|
6723
6723
|
:type Url: list of str
|
|
6724
|
+
:param _Algorithm: 当前部署证书加密算法
|
|
6725
|
+
:type Algorithm: str
|
|
6726
|
+
:param _OldAlgorithm: 原证书加密算法
|
|
6727
|
+
:type OldAlgorithm: str
|
|
6724
6728
|
"""
|
|
6725
6729
|
self._Id = None
|
|
6726
6730
|
self._CertId = None
|
|
@@ -6744,6 +6748,8 @@ class DeployRecordDetail(AbstractModel):
|
|
|
6744
6748
|
self._TCBType = None
|
|
6745
6749
|
self._Region = None
|
|
6746
6750
|
self._Url = None
|
|
6751
|
+
self._Algorithm = None
|
|
6752
|
+
self._OldAlgorithm = None
|
|
6747
6753
|
|
|
6748
6754
|
@property
|
|
6749
6755
|
def Id(self):
|
|
@@ -6987,6 +6993,28 @@ class DeployRecordDetail(AbstractModel):
|
|
|
6987
6993
|
def Url(self, Url):
|
|
6988
6994
|
self._Url = Url
|
|
6989
6995
|
|
|
6996
|
+
@property
|
|
6997
|
+
def Algorithm(self):
|
|
6998
|
+
"""当前部署证书加密算法
|
|
6999
|
+
:rtype: str
|
|
7000
|
+
"""
|
|
7001
|
+
return self._Algorithm
|
|
7002
|
+
|
|
7003
|
+
@Algorithm.setter
|
|
7004
|
+
def Algorithm(self, Algorithm):
|
|
7005
|
+
self._Algorithm = Algorithm
|
|
7006
|
+
|
|
7007
|
+
@property
|
|
7008
|
+
def OldAlgorithm(self):
|
|
7009
|
+
"""原证书加密算法
|
|
7010
|
+
:rtype: str
|
|
7011
|
+
"""
|
|
7012
|
+
return self._OldAlgorithm
|
|
7013
|
+
|
|
7014
|
+
@OldAlgorithm.setter
|
|
7015
|
+
def OldAlgorithm(self, OldAlgorithm):
|
|
7016
|
+
self._OldAlgorithm = OldAlgorithm
|
|
7017
|
+
|
|
6990
7018
|
|
|
6991
7019
|
def _deserialize(self, params):
|
|
6992
7020
|
self._Id = params.get("Id")
|
|
@@ -7011,6 +7039,8 @@ class DeployRecordDetail(AbstractModel):
|
|
|
7011
7039
|
self._TCBType = params.get("TCBType")
|
|
7012
7040
|
self._Region = params.get("Region")
|
|
7013
7041
|
self._Url = params.get("Url")
|
|
7042
|
+
self._Algorithm = params.get("Algorithm")
|
|
7043
|
+
self._OldAlgorithm = params.get("OldAlgorithm")
|
|
7014
7044
|
memeber_set = set(params.keys())
|
|
7015
7045
|
for name, value in vars(self).items():
|
|
7016
7046
|
property_name = name[1:]
|
|
@@ -19911,11 +19941,14 @@ applying:申请中;
|
|
|
19911
19941
|
failed:申请失败;
|
|
19912
19942
|
issued:绑定失败。
|
|
19913
19943
|
:type Status: str
|
|
19944
|
+
:param _Algorithm: 证书加密算法
|
|
19945
|
+
:type Algorithm: str
|
|
19914
19946
|
"""
|
|
19915
19947
|
self._Host = None
|
|
19916
19948
|
self._CertId = None
|
|
19917
19949
|
self._ZoneId = None
|
|
19918
19950
|
self._Status = None
|
|
19951
|
+
self._Algorithm = None
|
|
19919
19952
|
|
|
19920
19953
|
@property
|
|
19921
19954
|
def Host(self):
|
|
@@ -19967,12 +20000,24 @@ issued:绑定失败。
|
|
|
19967
20000
|
def Status(self, Status):
|
|
19968
20001
|
self._Status = Status
|
|
19969
20002
|
|
|
20003
|
+
@property
|
|
20004
|
+
def Algorithm(self):
|
|
20005
|
+
"""证书加密算法
|
|
20006
|
+
:rtype: str
|
|
20007
|
+
"""
|
|
20008
|
+
return self._Algorithm
|
|
20009
|
+
|
|
20010
|
+
@Algorithm.setter
|
|
20011
|
+
def Algorithm(self, Algorithm):
|
|
20012
|
+
self._Algorithm = Algorithm
|
|
20013
|
+
|
|
19970
20014
|
|
|
19971
20015
|
def _deserialize(self, params):
|
|
19972
20016
|
self._Host = params.get("Host")
|
|
19973
20017
|
self._CertId = params.get("CertId")
|
|
19974
20018
|
self._ZoneId = params.get("ZoneId")
|
|
19975
20019
|
self._Status = params.get("Status")
|
|
20020
|
+
self._Algorithm = params.get("Algorithm")
|
|
19976
20021
|
memeber_set = set(params.keys())
|
|
19977
20022
|
for name, value in vars(self).items():
|
|
19978
20023
|
property_name = name[1:]
|
|
@@ -20997,6 +21042,10 @@ class UpdateRecordDetail(AbstractModel):
|
|
|
20997
21042
|
:type TCBType: str
|
|
20998
21043
|
:param _Url: 监听器Url(clb专属)
|
|
20999
21044
|
:type Url: str
|
|
21045
|
+
:param _Algorithm: 新证书加密算法
|
|
21046
|
+
:type Algorithm: str
|
|
21047
|
+
:param _OldAlgorithm: 旧证书加密算法
|
|
21048
|
+
:type OldAlgorithm: str
|
|
21000
21049
|
"""
|
|
21001
21050
|
self._Id = None
|
|
21002
21051
|
self._CertId = None
|
|
@@ -21021,6 +21070,8 @@ class UpdateRecordDetail(AbstractModel):
|
|
|
21021
21070
|
self._EnvId = None
|
|
21022
21071
|
self._TCBType = None
|
|
21023
21072
|
self._Url = None
|
|
21073
|
+
self._Algorithm = None
|
|
21074
|
+
self._OldAlgorithm = None
|
|
21024
21075
|
|
|
21025
21076
|
@property
|
|
21026
21077
|
def Id(self):
|
|
@@ -21307,6 +21358,28 @@ class UpdateRecordDetail(AbstractModel):
|
|
|
21307
21358
|
def Url(self, Url):
|
|
21308
21359
|
self._Url = Url
|
|
21309
21360
|
|
|
21361
|
+
@property
|
|
21362
|
+
def Algorithm(self):
|
|
21363
|
+
"""新证书加密算法
|
|
21364
|
+
:rtype: str
|
|
21365
|
+
"""
|
|
21366
|
+
return self._Algorithm
|
|
21367
|
+
|
|
21368
|
+
@Algorithm.setter
|
|
21369
|
+
def Algorithm(self, Algorithm):
|
|
21370
|
+
self._Algorithm = Algorithm
|
|
21371
|
+
|
|
21372
|
+
@property
|
|
21373
|
+
def OldAlgorithm(self):
|
|
21374
|
+
"""旧证书加密算法
|
|
21375
|
+
:rtype: str
|
|
21376
|
+
"""
|
|
21377
|
+
return self._OldAlgorithm
|
|
21378
|
+
|
|
21379
|
+
@OldAlgorithm.setter
|
|
21380
|
+
def OldAlgorithm(self, OldAlgorithm):
|
|
21381
|
+
self._OldAlgorithm = OldAlgorithm
|
|
21382
|
+
|
|
21310
21383
|
|
|
21311
21384
|
def _deserialize(self, params):
|
|
21312
21385
|
self._Id = params.get("Id")
|
|
@@ -21332,6 +21405,8 @@ class UpdateRecordDetail(AbstractModel):
|
|
|
21332
21405
|
self._EnvId = params.get("EnvId")
|
|
21333
21406
|
self._TCBType = params.get("TCBType")
|
|
21334
21407
|
self._Url = params.get("Url")
|
|
21408
|
+
self._Algorithm = params.get("Algorithm")
|
|
21409
|
+
self._OldAlgorithm = params.get("OldAlgorithm")
|
|
21335
21410
|
memeber_set = set(params.keys())
|
|
21336
21411
|
for name, value in vars(self).items():
|
|
21337
21412
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1427
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1423
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|