tencentcloud-sdk-python-ssl 3.0.1427__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.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/setup.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/v20191205/models.py +47 -2
- {tencentcloud-sdk-python-ssl-3.0.1427 → 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.1427/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/README.rst +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/v20191205/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1432}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → 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(),
|
|
@@ -1538,6 +1538,8 @@ FILE:手动添加域名文件验证。 需要用户手动在域名站点根目
|
|
|
1538
1538
|
:type Type: int
|
|
1539
1539
|
:param _CaType: 只针对Dnspod系列证书有效,ca机构类型可为sectigo和digicert
|
|
1540
1540
|
:type CaType: str
|
|
1541
|
+
:param _SignAlgo: 签名算法
|
|
1542
|
+
:type SignAlgo: str
|
|
1541
1543
|
"""
|
|
1542
1544
|
self._CertId = None
|
|
1543
1545
|
self._GenCsrType = None
|
|
@@ -1579,6 +1581,7 @@ FILE:手动添加域名文件验证。 需要用户手动在域名站点根目
|
|
|
1579
1581
|
self._TechTitle = None
|
|
1580
1582
|
self._Type = None
|
|
1581
1583
|
self._CaType = None
|
|
1584
|
+
self._SignAlgo = None
|
|
1582
1585
|
|
|
1583
1586
|
@property
|
|
1584
1587
|
def CertId(self):
|
|
@@ -2045,6 +2048,17 @@ FILE:手动添加域名文件验证。 需要用户手动在域名站点根目
|
|
|
2045
2048
|
def CaType(self, CaType):
|
|
2046
2049
|
self._CaType = CaType
|
|
2047
2050
|
|
|
2051
|
+
@property
|
|
2052
|
+
def SignAlgo(self):
|
|
2053
|
+
"""签名算法
|
|
2054
|
+
:rtype: str
|
|
2055
|
+
"""
|
|
2056
|
+
return self._SignAlgo
|
|
2057
|
+
|
|
2058
|
+
@SignAlgo.setter
|
|
2059
|
+
def SignAlgo(self, SignAlgo):
|
|
2060
|
+
self._SignAlgo = SignAlgo
|
|
2061
|
+
|
|
2048
2062
|
|
|
2049
2063
|
def _deserialize(self, params):
|
|
2050
2064
|
self._CertId = params.get("CertId")
|
|
@@ -2087,6 +2101,7 @@ FILE:手动添加域名文件验证。 需要用户手动在域名站点根目
|
|
|
2087
2101
|
self._TechTitle = params.get("TechTitle")
|
|
2088
2102
|
self._Type = params.get("Type")
|
|
2089
2103
|
self._CaType = params.get("CaType")
|
|
2104
|
+
self._SignAlgo = params.get("SignAlgo")
|
|
2090
2105
|
memeber_set = set(params.keys())
|
|
2091
2106
|
for name, value in vars(self).items():
|
|
2092
2107
|
property_name = name[1:]
|
|
@@ -17455,7 +17470,7 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17455
17470
|
:type CertificateId: str
|
|
17456
17471
|
:param _ValidType: 验证类型:DNS_AUTO = 自动DNS验证(仅支持在腾讯云解析且解析状态正常的域名使用该验证类型),DNS = 手动DNS验证,FILE = 文件验证。
|
|
17457
17472
|
:type ValidType: str
|
|
17458
|
-
:param _CsrType: 类型,默认
|
|
17473
|
+
:param _CsrType: 类型,默认 original。可选项:original = 原证书 CSR,upload = 手动上传,online = 在线生成。
|
|
17459
17474
|
:type CsrType: str
|
|
17460
17475
|
:param _CsrContent: CSR 内容,手动上传的时候需要。
|
|
17461
17476
|
:type CsrContent: str
|
|
@@ -17468,6 +17483,8 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17468
17483
|
:type CertCSREncryptAlgo: str
|
|
17469
17484
|
:param _CertCSRKeyParameter: CSR加密参数,CsrEncryptAlgo为RSA时, 可选2048、4096等默认为2048;CsrEncryptAlgo为ECC时,可选prime256v1,secp384r1等,默认为prime256v1;
|
|
17470
17485
|
:type CertCSRKeyParameter: str
|
|
17486
|
+
:param _SignAlgo: 签名算法
|
|
17487
|
+
:type SignAlgo: str
|
|
17471
17488
|
"""
|
|
17472
17489
|
self._CertificateId = None
|
|
17473
17490
|
self._ValidType = None
|
|
@@ -17477,6 +17494,7 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17477
17494
|
self._Reason = None
|
|
17478
17495
|
self._CertCSREncryptAlgo = None
|
|
17479
17496
|
self._CertCSRKeyParameter = None
|
|
17497
|
+
self._SignAlgo = None
|
|
17480
17498
|
|
|
17481
17499
|
@property
|
|
17482
17500
|
def CertificateId(self):
|
|
@@ -17502,7 +17520,7 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17502
17520
|
|
|
17503
17521
|
@property
|
|
17504
17522
|
def CsrType(self):
|
|
17505
|
-
"""类型,默认
|
|
17523
|
+
"""类型,默认 original。可选项:original = 原证书 CSR,upload = 手动上传,online = 在线生成。
|
|
17506
17524
|
:rtype: str
|
|
17507
17525
|
"""
|
|
17508
17526
|
return self._CsrType
|
|
@@ -17567,6 +17585,17 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17567
17585
|
def CertCSRKeyParameter(self, CertCSRKeyParameter):
|
|
17568
17586
|
self._CertCSRKeyParameter = CertCSRKeyParameter
|
|
17569
17587
|
|
|
17588
|
+
@property
|
|
17589
|
+
def SignAlgo(self):
|
|
17590
|
+
"""签名算法
|
|
17591
|
+
:rtype: str
|
|
17592
|
+
"""
|
|
17593
|
+
return self._SignAlgo
|
|
17594
|
+
|
|
17595
|
+
@SignAlgo.setter
|
|
17596
|
+
def SignAlgo(self, SignAlgo):
|
|
17597
|
+
self._SignAlgo = SignAlgo
|
|
17598
|
+
|
|
17570
17599
|
|
|
17571
17600
|
def _deserialize(self, params):
|
|
17572
17601
|
self._CertificateId = params.get("CertificateId")
|
|
@@ -17577,6 +17606,7 @@ class ReplaceCertificateRequest(AbstractModel):
|
|
|
17577
17606
|
self._Reason = params.get("Reason")
|
|
17578
17607
|
self._CertCSREncryptAlgo = params.get("CertCSREncryptAlgo")
|
|
17579
17608
|
self._CertCSRKeyParameter = params.get("CertCSRKeyParameter")
|
|
17609
|
+
self._SignAlgo = params.get("SignAlgo")
|
|
17580
17610
|
memeber_set = set(params.keys())
|
|
17581
17611
|
for name, value in vars(self).items():
|
|
17582
17612
|
property_name = name[1:]
|
|
@@ -21842,6 +21872,8 @@ class UploadCertificateRequest(AbstractModel):
|
|
|
21842
21872
|
:type Tags: list of Tags
|
|
21843
21873
|
:param _Repeatable: 相同的证书是否允许重复上传; true:允许上传相同指纹的证书; false:不允许上传相同指纹的证书; 默认值:true
|
|
21844
21874
|
:type Repeatable: bool
|
|
21875
|
+
:param _KeyPassword: 私钥密码
|
|
21876
|
+
:type KeyPassword: str
|
|
21845
21877
|
"""
|
|
21846
21878
|
self._CertificatePublicKey = None
|
|
21847
21879
|
self._CertificatePrivateKey = None
|
|
@@ -21851,6 +21883,7 @@ class UploadCertificateRequest(AbstractModel):
|
|
|
21851
21883
|
self._CertificateUse = None
|
|
21852
21884
|
self._Tags = None
|
|
21853
21885
|
self._Repeatable = None
|
|
21886
|
+
self._KeyPassword = None
|
|
21854
21887
|
|
|
21855
21888
|
@property
|
|
21856
21889
|
def CertificatePublicKey(self):
|
|
@@ -21940,6 +21973,17 @@ class UploadCertificateRequest(AbstractModel):
|
|
|
21940
21973
|
def Repeatable(self, Repeatable):
|
|
21941
21974
|
self._Repeatable = Repeatable
|
|
21942
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
|
+
|
|
21943
21987
|
|
|
21944
21988
|
def _deserialize(self, params):
|
|
21945
21989
|
self._CertificatePublicKey = params.get("CertificatePublicKey")
|
|
@@ -21955,6 +21999,7 @@ class UploadCertificateRequest(AbstractModel):
|
|
|
21955
21999
|
obj._deserialize(item)
|
|
21956
22000
|
self._Tags.append(obj)
|
|
21957
22001
|
self._Repeatable = params.get("Repeatable")
|
|
22002
|
+
self._KeyPassword = params.get("KeyPassword")
|
|
21958
22003
|
memeber_set = set(params.keys())
|
|
21959
22004
|
for name, value in vars(self).items():
|
|
21960
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.1427
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|