tencentcloud-sdk-python-ssl 3.0.1242__tar.gz → 3.0.1250__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.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/setup.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/tencentcloud/ssl/v20191205/models.py +39 -0
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ssl-3.0.1250/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ssl-3.0.1242/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/README.rst +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/tencentcloud/ssl/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/tencentcloud/ssl/v20191205/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1242 → tencentcloud-sdk-python-ssl-3.0.1250}/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.1250"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ssl SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3552,6 +3552,45 @@ class DeleteCertificatesRequest(AbstractModel):
|
|
|
3552
3552
|
|
|
3553
3553
|
"""
|
|
3554
3554
|
|
|
3555
|
+
def __init__(self):
|
|
3556
|
+
r"""
|
|
3557
|
+
:param _CertificateIds: 要删除的证书ID。单次最多100个
|
|
3558
|
+
:type CertificateIds: list of str
|
|
3559
|
+
:param _IsSync: 删除时是否检查证书关联了云资源。默认不检查。如需要检查关联云资源 (需授权服务角色SSL_QCSLinkedRoleInReplaceLoadCertificate),完成授权后,删除将变成异步任务,接口会返回异步任务ID。需搭配 DescribeDeleteCertificatesTaskResult接口使用,查询删除任务是否成功。
|
|
3560
|
+
:type IsSync: bool
|
|
3561
|
+
"""
|
|
3562
|
+
self._CertificateIds = None
|
|
3563
|
+
self._IsSync = None
|
|
3564
|
+
|
|
3565
|
+
@property
|
|
3566
|
+
def CertificateIds(self):
|
|
3567
|
+
return self._CertificateIds
|
|
3568
|
+
|
|
3569
|
+
@CertificateIds.setter
|
|
3570
|
+
def CertificateIds(self, CertificateIds):
|
|
3571
|
+
self._CertificateIds = CertificateIds
|
|
3572
|
+
|
|
3573
|
+
@property
|
|
3574
|
+
def IsSync(self):
|
|
3575
|
+
return self._IsSync
|
|
3576
|
+
|
|
3577
|
+
@IsSync.setter
|
|
3578
|
+
def IsSync(self, IsSync):
|
|
3579
|
+
self._IsSync = IsSync
|
|
3580
|
+
|
|
3581
|
+
|
|
3582
|
+
def _deserialize(self, params):
|
|
3583
|
+
self._CertificateIds = params.get("CertificateIds")
|
|
3584
|
+
self._IsSync = params.get("IsSync")
|
|
3585
|
+
memeber_set = set(params.keys())
|
|
3586
|
+
for name, value in vars(self).items():
|
|
3587
|
+
property_name = name[1:]
|
|
3588
|
+
if property_name in memeber_set:
|
|
3589
|
+
memeber_set.remove(property_name)
|
|
3590
|
+
if len(memeber_set) > 0:
|
|
3591
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
3592
|
+
|
|
3593
|
+
|
|
3555
3594
|
|
|
3556
3595
|
class DeleteCertificatesResponse(AbstractModel):
|
|
3557
3596
|
"""DeleteCertificates返回参数结构体
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1250
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1242
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|