tencentcloud-sdk-python-ssl 3.0.1237__py2.py3-none-any.whl → 3.0.1253__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/ssl/v20191205/models.py +114 -0
- {tencentcloud_sdk_python_ssl-3.0.1237.dist-info → tencentcloud_sdk_python_ssl-3.0.1253.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_ssl-3.0.1253.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_ssl-3.0.1237.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_ssl-3.0.1237.dist-info → tencentcloud_sdk_python_ssl-3.0.1253.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_ssl-3.0.1237.dist-info → tencentcloud_sdk_python_ssl-3.0.1253.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -1319,6 +1319,12 @@ class Certificates(AbstractModel):
|
|
|
1319
1319
|
:param _CertRevokedTime: 证书吊销完成时间
|
|
1320
1320
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1321
1321
|
:type CertRevokedTime: str
|
|
1322
|
+
:param _HostingResourceTypes: 托管资源类型列表
|
|
1323
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1324
|
+
:type HostingResourceTypes: list of str
|
|
1325
|
+
:param _HostingConfig: 托管配置信息
|
|
1326
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1327
|
+
:type HostingConfig: :class:`tencentcloud.ssl.v20191205.models.HostingConfig`
|
|
1322
1328
|
"""
|
|
1323
1329
|
self._OwnerUin = None
|
|
1324
1330
|
self._ProjectId = None
|
|
@@ -1374,6 +1380,8 @@ class Certificates(AbstractModel):
|
|
|
1374
1380
|
self._KeyPasswordCustomFlag = None
|
|
1375
1381
|
self._SupportDownloadType = None
|
|
1376
1382
|
self._CertRevokedTime = None
|
|
1383
|
+
self._HostingResourceTypes = None
|
|
1384
|
+
self._HostingConfig = None
|
|
1377
1385
|
|
|
1378
1386
|
@property
|
|
1379
1387
|
def OwnerUin(self):
|
|
@@ -1807,6 +1815,22 @@ class Certificates(AbstractModel):
|
|
|
1807
1815
|
def CertRevokedTime(self, CertRevokedTime):
|
|
1808
1816
|
self._CertRevokedTime = CertRevokedTime
|
|
1809
1817
|
|
|
1818
|
+
@property
|
|
1819
|
+
def HostingResourceTypes(self):
|
|
1820
|
+
return self._HostingResourceTypes
|
|
1821
|
+
|
|
1822
|
+
@HostingResourceTypes.setter
|
|
1823
|
+
def HostingResourceTypes(self, HostingResourceTypes):
|
|
1824
|
+
self._HostingResourceTypes = HostingResourceTypes
|
|
1825
|
+
|
|
1826
|
+
@property
|
|
1827
|
+
def HostingConfig(self):
|
|
1828
|
+
return self._HostingConfig
|
|
1829
|
+
|
|
1830
|
+
@HostingConfig.setter
|
|
1831
|
+
def HostingConfig(self, HostingConfig):
|
|
1832
|
+
self._HostingConfig = HostingConfig
|
|
1833
|
+
|
|
1810
1834
|
|
|
1811
1835
|
def _deserialize(self, params):
|
|
1812
1836
|
self._OwnerUin = params.get("OwnerUin")
|
|
@@ -1876,6 +1900,10 @@ class Certificates(AbstractModel):
|
|
|
1876
1900
|
self._SupportDownloadType = SupportDownloadType()
|
|
1877
1901
|
self._SupportDownloadType._deserialize(params.get("SupportDownloadType"))
|
|
1878
1902
|
self._CertRevokedTime = params.get("CertRevokedTime")
|
|
1903
|
+
self._HostingResourceTypes = params.get("HostingResourceTypes")
|
|
1904
|
+
if params.get("HostingConfig") is not None:
|
|
1905
|
+
self._HostingConfig = HostingConfig()
|
|
1906
|
+
self._HostingConfig._deserialize(params.get("HostingConfig"))
|
|
1879
1907
|
memeber_set = set(params.keys())
|
|
1880
1908
|
for name, value in vars(self).items():
|
|
1881
1909
|
property_name = name[1:]
|
|
@@ -3524,6 +3552,45 @@ class DeleteCertificatesRequest(AbstractModel):
|
|
|
3524
3552
|
|
|
3525
3553
|
"""
|
|
3526
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
|
+
|
|
3527
3594
|
|
|
3528
3595
|
class DeleteCertificatesResponse(AbstractModel):
|
|
3529
3596
|
"""DeleteCertificates返回参数结构体
|
|
@@ -10497,6 +10564,53 @@ class GatewayCertificate(AbstractModel):
|
|
|
10497
10564
|
|
|
10498
10565
|
|
|
10499
10566
|
|
|
10567
|
+
class HostingConfig(AbstractModel):
|
|
10568
|
+
"""托管配置
|
|
10569
|
+
|
|
10570
|
+
"""
|
|
10571
|
+
|
|
10572
|
+
def __init__(self):
|
|
10573
|
+
r"""
|
|
10574
|
+
:param _ReplaceTime: 托管资源替换时间, 默认为证书过期前30天存在续费证书则替换
|
|
10575
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10576
|
+
:type ReplaceTime: int
|
|
10577
|
+
:param _MessageTypes: 托管发送消息类型:0,托管开始前消息提醒(没有续费证书也会收到该提示消息); 1, 托管开始消息提醒(存在续费证书才会收到消息提醒); 2, 托管资源替换失败消息提醒; 3 托管资源替换成功消息提醒
|
|
10578
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10579
|
+
:type MessageTypes: list of int
|
|
10580
|
+
"""
|
|
10581
|
+
self._ReplaceTime = None
|
|
10582
|
+
self._MessageTypes = None
|
|
10583
|
+
|
|
10584
|
+
@property
|
|
10585
|
+
def ReplaceTime(self):
|
|
10586
|
+
return self._ReplaceTime
|
|
10587
|
+
|
|
10588
|
+
@ReplaceTime.setter
|
|
10589
|
+
def ReplaceTime(self, ReplaceTime):
|
|
10590
|
+
self._ReplaceTime = ReplaceTime
|
|
10591
|
+
|
|
10592
|
+
@property
|
|
10593
|
+
def MessageTypes(self):
|
|
10594
|
+
return self._MessageTypes
|
|
10595
|
+
|
|
10596
|
+
@MessageTypes.setter
|
|
10597
|
+
def MessageTypes(self, MessageTypes):
|
|
10598
|
+
self._MessageTypes = MessageTypes
|
|
10599
|
+
|
|
10600
|
+
|
|
10601
|
+
def _deserialize(self, params):
|
|
10602
|
+
self._ReplaceTime = params.get("ReplaceTime")
|
|
10603
|
+
self._MessageTypes = params.get("MessageTypes")
|
|
10604
|
+
memeber_set = set(params.keys())
|
|
10605
|
+
for name, value in vars(self).items():
|
|
10606
|
+
property_name = name[1:]
|
|
10607
|
+
if property_name in memeber_set:
|
|
10608
|
+
memeber_set.remove(property_name)
|
|
10609
|
+
if len(memeber_set) > 0:
|
|
10610
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10611
|
+
|
|
10612
|
+
|
|
10613
|
+
|
|
10500
10614
|
class LighthouseInstanceDetail(AbstractModel):
|
|
10501
10615
|
"""Lighthouse实例
|
|
10502
10616
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ssl
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1253
|
|
4
4
|
Summary: Tencent Cloud Ssl SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1253)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=OUCDC_7fPYoFpB2Vinq-mPrnk8yA1eNT2cayKemmNic,631
|
|
2
|
+
tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/ssl/v20191205/errorcodes.py,sha256=ZcN6NHJIQarbk4gLHK2HlKqA1TQ4WeZskq8WpdYttqk,11818
|
|
5
|
+
tencentcloud/ssl/v20191205/models.py,sha256=VzDJ-Oh7h8b4ThP5Qg_7vr8A4kIKghqKEgSvA9PNH00,497855
|
|
6
|
+
tencentcloud/ssl/v20191205/ssl_client.py,sha256=8iuhU545WrjL-_RBC9Njb2V1qvxk3ELZJojXoBA1JX4,58747
|
|
7
|
+
tencentcloud_sdk_python_ssl-3.0.1253.dist-info/METADATA,sha256=EEuHwhGKTkz4rxxeI4Iyj5aEUrWRqpWoUCuSYTSb9qk,1492
|
|
8
|
+
tencentcloud_sdk_python_ssl-3.0.1253.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_ssl-3.0.1253.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_ssl-3.0.1253.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=H54gAH968PT5BuF7KXColTwPHBJVF_S4G4shVU2FFyU,631
|
|
2
|
-
tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/ssl/v20191205/errorcodes.py,sha256=ZcN6NHJIQarbk4gLHK2HlKqA1TQ4WeZskq8WpdYttqk,11818
|
|
5
|
-
tencentcloud/ssl/v20191205/models.py,sha256=xmICzVoohfPCEY5i1xy5WSG5oVrdP96p1409zeAb4cU,493606
|
|
6
|
-
tencentcloud/ssl/v20191205/ssl_client.py,sha256=8iuhU545WrjL-_RBC9Njb2V1qvxk3ELZJojXoBA1JX4,58747
|
|
7
|
-
tencentcloud_sdk_python_ssl-3.0.1237.dist-info/METADATA,sha256=Ua98vueb-B9ndFscsG2Kjm9lo1jOidp-M-zOkcP9uEI,1492
|
|
8
|
-
tencentcloud_sdk_python_ssl-3.0.1237.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_ssl-3.0.1237.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_ssl-3.0.1237.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|