tencentcloud-sdk-python-ssl 3.0.1427__tar.gz → 3.0.1431__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.1431}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/setup.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/tencentcloud/ssl/v20191205/models.py +32 -2
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ssl-3.0.1431/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.1431}/README.rst +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/tencentcloud/ssl/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/tencentcloud/ssl/v20191205/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1427 → tencentcloud-sdk-python-ssl-3.0.1431}/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.1431,<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:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1431
|
|
@@ -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
|