tencentcloud-sdk-python-ssl 3.0.1278__tar.gz → 3.0.1287__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.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/setup.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/tencentcloud/ssl/v20191205/models.py +15 -0
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ssl-3.0.1287/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ssl-3.0.1278/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/README.rst +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/tencentcloud/ssl/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/tencentcloud/ssl/v20191205/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1278 → tencentcloud-sdk-python-ssl-3.0.1287}/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.1287"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ssl SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -15430,6 +15430,8 @@ class SubmitCertificateInformationRequest(AbstractModel):
|
|
|
15430
15430
|
:type ContactNumber: str
|
|
15431
15431
|
:param _ContactPosition: 联系人职位。
|
|
15432
15432
|
:type ContactPosition: str
|
|
15433
|
+
:param _IsDV: 是否DV证书。默认false
|
|
15434
|
+
:type IsDV: bool
|
|
15433
15435
|
"""
|
|
15434
15436
|
self._CertificateId = None
|
|
15435
15437
|
self._CsrType = None
|
|
@@ -15457,6 +15459,7 @@ class SubmitCertificateInformationRequest(AbstractModel):
|
|
|
15457
15459
|
self._ContactEmail = None
|
|
15458
15460
|
self._ContactNumber = None
|
|
15459
15461
|
self._ContactPosition = None
|
|
15462
|
+
self._IsDV = None
|
|
15460
15463
|
|
|
15461
15464
|
@property
|
|
15462
15465
|
def CertificateId(self):
|
|
@@ -15744,6 +15747,17 @@ class SubmitCertificateInformationRequest(AbstractModel):
|
|
|
15744
15747
|
def ContactPosition(self, ContactPosition):
|
|
15745
15748
|
self._ContactPosition = ContactPosition
|
|
15746
15749
|
|
|
15750
|
+
@property
|
|
15751
|
+
def IsDV(self):
|
|
15752
|
+
"""是否DV证书。默认false
|
|
15753
|
+
:rtype: bool
|
|
15754
|
+
"""
|
|
15755
|
+
return self._IsDV
|
|
15756
|
+
|
|
15757
|
+
@IsDV.setter
|
|
15758
|
+
def IsDV(self, IsDV):
|
|
15759
|
+
self._IsDV = IsDV
|
|
15760
|
+
|
|
15747
15761
|
|
|
15748
15762
|
def _deserialize(self, params):
|
|
15749
15763
|
self._CertificateId = params.get("CertificateId")
|
|
@@ -15772,6 +15786,7 @@ class SubmitCertificateInformationRequest(AbstractModel):
|
|
|
15772
15786
|
self._ContactEmail = params.get("ContactEmail")
|
|
15773
15787
|
self._ContactNumber = params.get("ContactNumber")
|
|
15774
15788
|
self._ContactPosition = params.get("ContactPosition")
|
|
15789
|
+
self._IsDV = params.get("IsDV")
|
|
15775
15790
|
memeber_set = set(params.keys())
|
|
15776
15791
|
for name, value in vars(self).items():
|
|
15777
15792
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1287
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1278
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|