tencentcloud-sdk-python-ssl 3.0.1239__tar.gz → 3.0.1242__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud/ssl/v20191205/models.py +75 -0
  5. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-ssl-3.0.1242/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-ssl-3.0.1239/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/README.rst +0 -0
  9. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud/ssl/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud/ssl/v20191205/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
  14. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ssl-3.0.1239 → tencentcloud-sdk-python-ssl-3.0.1242}/tencentcloud_sdk_python_ssl.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1239
3
+ Version: 3.0.1242
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
@@ -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.1239"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1242"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Ssl SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1239'
17
+ __version__ = '3.0.1242'
@@ -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:]
@@ -10497,6 +10525,53 @@ class GatewayCertificate(AbstractModel):
10497
10525
 
10498
10526
 
10499
10527
 
10528
+ class HostingConfig(AbstractModel):
10529
+ """托管配置
10530
+
10531
+ """
10532
+
10533
+ def __init__(self):
10534
+ r"""
10535
+ :param _ReplaceTime: 托管资源替换时间, 默认为证书过期前30天存在续费证书则替换
10536
+ 注意:此字段可能返回 null,表示取不到有效值。
10537
+ :type ReplaceTime: int
10538
+ :param _MessageTypes: 托管发送消息类型:0,托管开始前消息提醒(没有续费证书也会收到该提示消息); 1, 托管开始消息提醒(存在续费证书才会收到消息提醒); 2, 托管资源替换失败消息提醒; 3 托管资源替换成功消息提醒
10539
+ 注意:此字段可能返回 null,表示取不到有效值。
10540
+ :type MessageTypes: list of int
10541
+ """
10542
+ self._ReplaceTime = None
10543
+ self._MessageTypes = None
10544
+
10545
+ @property
10546
+ def ReplaceTime(self):
10547
+ return self._ReplaceTime
10548
+
10549
+ @ReplaceTime.setter
10550
+ def ReplaceTime(self, ReplaceTime):
10551
+ self._ReplaceTime = ReplaceTime
10552
+
10553
+ @property
10554
+ def MessageTypes(self):
10555
+ return self._MessageTypes
10556
+
10557
+ @MessageTypes.setter
10558
+ def MessageTypes(self, MessageTypes):
10559
+ self._MessageTypes = MessageTypes
10560
+
10561
+
10562
+ def _deserialize(self, params):
10563
+ self._ReplaceTime = params.get("ReplaceTime")
10564
+ self._MessageTypes = params.get("MessageTypes")
10565
+ memeber_set = set(params.keys())
10566
+ for name, value in vars(self).items():
10567
+ property_name = name[1:]
10568
+ if property_name in memeber_set:
10569
+ memeber_set.remove(property_name)
10570
+ if len(memeber_set) > 0:
10571
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
10572
+
10573
+
10574
+
10500
10575
  class LighthouseInstanceDetail(AbstractModel):
10501
10576
  """Lighthouse实例
10502
10577
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1239
3
+ Version: 3.0.1242
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1242
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1239