tencentcloud-sdk-python-ssl 3.0.1420__tar.gz → 3.0.1427__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.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/v20191205/models.py +122 -2
  5. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-ssl-3.0.1427/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-ssl-3.0.1420/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/README.rst +0 -0
  9. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/v20191205/__init__.py +0 -0
  12. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
  14. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1427}/tencentcloud_sdk_python_ssl.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1420
3
+ Version: 3.0.1427
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.1420,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1427,<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(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1420'
17
+ __version__ = '3.0.1427'
@@ -6532,6 +6532,8 @@ class DeployRecord(AbstractModel):
6532
6532
  :type Status: int
6533
6533
  :param _CreateTime: 托管资源创建时间
6534
6534
  :type CreateTime: str
6535
+ :param _PendingTotalCount: 待部署总数
6536
+ :type PendingTotalCount: int
6535
6537
  """
6536
6538
  self._TotalCount = None
6537
6539
  self._SuccessTotalCount = None
@@ -6541,6 +6543,7 @@ class DeployRecord(AbstractModel):
6541
6543
  self._RecordDetailList = None
6542
6544
  self._Status = None
6543
6545
  self._CreateTime = None
6546
+ self._PendingTotalCount = None
6544
6547
 
6545
6548
  @property
6546
6549
  def TotalCount(self):
@@ -6630,6 +6633,17 @@ class DeployRecord(AbstractModel):
6630
6633
  def CreateTime(self, CreateTime):
6631
6634
  self._CreateTime = CreateTime
6632
6635
 
6636
+ @property
6637
+ def PendingTotalCount(self):
6638
+ """待部署总数
6639
+ :rtype: int
6640
+ """
6641
+ return self._PendingTotalCount
6642
+
6643
+ @PendingTotalCount.setter
6644
+ def PendingTotalCount(self, PendingTotalCount):
6645
+ self._PendingTotalCount = PendingTotalCount
6646
+
6633
6647
 
6634
6648
  def _deserialize(self, params):
6635
6649
  self._TotalCount = params.get("TotalCount")
@@ -6645,6 +6659,7 @@ class DeployRecord(AbstractModel):
6645
6659
  self._RecordDetailList.append(obj)
6646
6660
  self._Status = params.get("Status")
6647
6661
  self._CreateTime = params.get("CreateTime")
6662
+ self._PendingTotalCount = params.get("PendingTotalCount")
6648
6663
  memeber_set = set(params.keys())
6649
6664
  for name, value in vars(self).items():
6650
6665
  property_name = name[1:]
@@ -6706,6 +6721,10 @@ class DeployRecordDetail(AbstractModel):
6706
6721
  :type Region: str
6707
6722
  :param _Url: 部署CLB监听器的Url
6708
6723
  :type Url: list of str
6724
+ :param _Algorithm: 当前部署证书加密算法
6725
+ :type Algorithm: str
6726
+ :param _OldAlgorithm: 原证书加密算法
6727
+ :type OldAlgorithm: str
6709
6728
  """
6710
6729
  self._Id = None
6711
6730
  self._CertId = None
@@ -6729,6 +6748,8 @@ class DeployRecordDetail(AbstractModel):
6729
6748
  self._TCBType = None
6730
6749
  self._Region = None
6731
6750
  self._Url = None
6751
+ self._Algorithm = None
6752
+ self._OldAlgorithm = None
6732
6753
 
6733
6754
  @property
6734
6755
  def Id(self):
@@ -6972,6 +6993,28 @@ class DeployRecordDetail(AbstractModel):
6972
6993
  def Url(self, Url):
6973
6994
  self._Url = Url
6974
6995
 
6996
+ @property
6997
+ def Algorithm(self):
6998
+ """当前部署证书加密算法
6999
+ :rtype: str
7000
+ """
7001
+ return self._Algorithm
7002
+
7003
+ @Algorithm.setter
7004
+ def Algorithm(self, Algorithm):
7005
+ self._Algorithm = Algorithm
7006
+
7007
+ @property
7008
+ def OldAlgorithm(self):
7009
+ """原证书加密算法
7010
+ :rtype: str
7011
+ """
7012
+ return self._OldAlgorithm
7013
+
7014
+ @OldAlgorithm.setter
7015
+ def OldAlgorithm(self, OldAlgorithm):
7016
+ self._OldAlgorithm = OldAlgorithm
7017
+
6975
7018
 
6976
7019
  def _deserialize(self, params):
6977
7020
  self._Id = params.get("Id")
@@ -6996,6 +7039,8 @@ class DeployRecordDetail(AbstractModel):
6996
7039
  self._TCBType = params.get("TCBType")
6997
7040
  self._Region = params.get("Region")
6998
7041
  self._Url = params.get("Url")
7042
+ self._Algorithm = params.get("Algorithm")
7043
+ self._OldAlgorithm = params.get("OldAlgorithm")
6999
7044
  memeber_set = set(params.keys())
7000
7045
  for name, value in vars(self).items():
7001
7046
  property_name = name[1:]
@@ -12164,6 +12209,8 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
12164
12209
  :type FailedTotalCount: int
12165
12210
  :param _RunningTotalCount: 部署中总数
12166
12211
  :type RunningTotalCount: int
12212
+ :param _PendingTotalCount: 带部署总数
12213
+ :type PendingTotalCount: int
12167
12214
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12168
12215
  :type RequestId: str
12169
12216
  """
@@ -12172,6 +12219,7 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
12172
12219
  self._SuccessTotalCount = None
12173
12220
  self._FailedTotalCount = None
12174
12221
  self._RunningTotalCount = None
12222
+ self._PendingTotalCount = None
12175
12223
  self._RequestId = None
12176
12224
 
12177
12225
  @property
@@ -12229,6 +12277,17 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
12229
12277
  def RunningTotalCount(self, RunningTotalCount):
12230
12278
  self._RunningTotalCount = RunningTotalCount
12231
12279
 
12280
+ @property
12281
+ def PendingTotalCount(self):
12282
+ """带部署总数
12283
+ :rtype: int
12284
+ """
12285
+ return self._PendingTotalCount
12286
+
12287
+ @PendingTotalCount.setter
12288
+ def PendingTotalCount(self, PendingTotalCount):
12289
+ self._PendingTotalCount = PendingTotalCount
12290
+
12232
12291
  @property
12233
12292
  def RequestId(self):
12234
12293
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -12252,6 +12311,7 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
12252
12311
  self._SuccessTotalCount = params.get("SuccessTotalCount")
12253
12312
  self._FailedTotalCount = params.get("FailedTotalCount")
12254
12313
  self._RunningTotalCount = params.get("RunningTotalCount")
12314
+ self._PendingTotalCount = params.get("PendingTotalCount")
12255
12315
  self._RequestId = params.get("RequestId")
12256
12316
 
12257
12317
 
@@ -13240,6 +13300,8 @@ class DescribeHostUpdateRecordDetailResponse(AbstractModel):
13240
13300
  :type FailedTotalCount: int
13241
13301
  :param _RunningTotalCount: 部署中总数,如果取不到返回0
13242
13302
  :type RunningTotalCount: int
13303
+ :param _PendingTotalCount: 待部署总数
13304
+ :type PendingTotalCount: int
13243
13305
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
13244
13306
  :type RequestId: str
13245
13307
  """
@@ -13248,6 +13310,7 @@ class DescribeHostUpdateRecordDetailResponse(AbstractModel):
13248
13310
  self._SuccessTotalCount = None
13249
13311
  self._FailedTotalCount = None
13250
13312
  self._RunningTotalCount = None
13313
+ self._PendingTotalCount = None
13251
13314
  self._RequestId = None
13252
13315
 
13253
13316
  @property
@@ -13305,6 +13368,17 @@ class DescribeHostUpdateRecordDetailResponse(AbstractModel):
13305
13368
  def RunningTotalCount(self, RunningTotalCount):
13306
13369
  self._RunningTotalCount = RunningTotalCount
13307
13370
 
13371
+ @property
13372
+ def PendingTotalCount(self):
13373
+ """待部署总数
13374
+ :rtype: int
13375
+ """
13376
+ return self._PendingTotalCount
13377
+
13378
+ @PendingTotalCount.setter
13379
+ def PendingTotalCount(self, PendingTotalCount):
13380
+ self._PendingTotalCount = PendingTotalCount
13381
+
13308
13382
  @property
13309
13383
  def RequestId(self):
13310
13384
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -13328,6 +13402,7 @@ class DescribeHostUpdateRecordDetailResponse(AbstractModel):
13328
13402
  self._SuccessTotalCount = params.get("SuccessTotalCount")
13329
13403
  self._FailedTotalCount = params.get("FailedTotalCount")
13330
13404
  self._RunningTotalCount = params.get("RunningTotalCount")
13405
+ self._PendingTotalCount = params.get("PendingTotalCount")
13331
13406
  self._RequestId = params.get("RequestId")
13332
13407
 
13333
13408
 
@@ -19866,11 +19941,14 @@ applying:申请中;
19866
19941
  failed:申请失败;
19867
19942
  issued:绑定失败。
19868
19943
  :type Status: str
19944
+ :param _Algorithm: 证书加密算法
19945
+ :type Algorithm: str
19869
19946
  """
19870
19947
  self._Host = None
19871
19948
  self._CertId = None
19872
19949
  self._ZoneId = None
19873
19950
  self._Status = None
19951
+ self._Algorithm = None
19874
19952
 
19875
19953
  @property
19876
19954
  def Host(self):
@@ -19922,12 +20000,24 @@ issued:绑定失败。
19922
20000
  def Status(self, Status):
19923
20001
  self._Status = Status
19924
20002
 
20003
+ @property
20004
+ def Algorithm(self):
20005
+ """证书加密算法
20006
+ :rtype: str
20007
+ """
20008
+ return self._Algorithm
20009
+
20010
+ @Algorithm.setter
20011
+ def Algorithm(self, Algorithm):
20012
+ self._Algorithm = Algorithm
20013
+
19925
20014
 
19926
20015
  def _deserialize(self, params):
19927
20016
  self._Host = params.get("Host")
19928
20017
  self._CertId = params.get("CertId")
19929
20018
  self._ZoneId = params.get("ZoneId")
19930
20019
  self._Status = params.get("Status")
20020
+ self._Algorithm = params.get("Algorithm")
19931
20021
  memeber_set = set(params.keys())
19932
20022
  for name, value in vars(self).items():
19933
20023
  property_name = name[1:]
@@ -20952,6 +21042,10 @@ class UpdateRecordDetail(AbstractModel):
20952
21042
  :type TCBType: str
20953
21043
  :param _Url: 监听器Url(clb专属)
20954
21044
  :type Url: str
21045
+ :param _Algorithm: 新证书加密算法
21046
+ :type Algorithm: str
21047
+ :param _OldAlgorithm: 旧证书加密算法
21048
+ :type OldAlgorithm: str
20955
21049
  """
20956
21050
  self._Id = None
20957
21051
  self._CertId = None
@@ -20976,6 +21070,8 @@ class UpdateRecordDetail(AbstractModel):
20976
21070
  self._EnvId = None
20977
21071
  self._TCBType = None
20978
21072
  self._Url = None
21073
+ self._Algorithm = None
21074
+ self._OldAlgorithm = None
20979
21075
 
20980
21076
  @property
20981
21077
  def Id(self):
@@ -21262,6 +21358,28 @@ class UpdateRecordDetail(AbstractModel):
21262
21358
  def Url(self, Url):
21263
21359
  self._Url = Url
21264
21360
 
21361
+ @property
21362
+ def Algorithm(self):
21363
+ """新证书加密算法
21364
+ :rtype: str
21365
+ """
21366
+ return self._Algorithm
21367
+
21368
+ @Algorithm.setter
21369
+ def Algorithm(self, Algorithm):
21370
+ self._Algorithm = Algorithm
21371
+
21372
+ @property
21373
+ def OldAlgorithm(self):
21374
+ """旧证书加密算法
21375
+ :rtype: str
21376
+ """
21377
+ return self._OldAlgorithm
21378
+
21379
+ @OldAlgorithm.setter
21380
+ def OldAlgorithm(self, OldAlgorithm):
21381
+ self._OldAlgorithm = OldAlgorithm
21382
+
21265
21383
 
21266
21384
  def _deserialize(self, params):
21267
21385
  self._Id = params.get("Id")
@@ -21287,6 +21405,8 @@ class UpdateRecordDetail(AbstractModel):
21287
21405
  self._EnvId = params.get("EnvId")
21288
21406
  self._TCBType = params.get("TCBType")
21289
21407
  self._Url = params.get("Url")
21408
+ self._Algorithm = params.get("Algorithm")
21409
+ self._OldAlgorithm = params.get("OldAlgorithm")
21290
21410
  memeber_set = set(params.keys())
21291
21411
  for name, value in vars(self).items():
21292
21412
  property_name = name[1:]
@@ -21854,7 +21974,7 @@ class UploadCertificateResponse(AbstractModel):
21854
21974
  r"""
21855
21975
  :param _CertificateId: 证书 ID。
21856
21976
  :type CertificateId: str
21857
- :param _RepeatCertId: 重复证书的ID
21977
+ :param _RepeatCertId: 当入参Repeatable为false的时候 返回的重复证书的ID,注意当用户上传相同的证书超过5000张的时候,当前接口会无视入参Repeatable,直接返回重复证书的ID。
21858
21978
  :type RepeatCertId: str
21859
21979
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
21860
21980
  :type RequestId: str
@@ -21876,7 +21996,7 @@ class UploadCertificateResponse(AbstractModel):
21876
21996
 
21877
21997
  @property
21878
21998
  def RepeatCertId(self):
21879
- """重复证书的ID
21999
+ """当入参Repeatable为false的时候 返回的重复证书的ID,注意当用户上传相同的证书超过5000张的时候,当前接口会无视入参Repeatable,直接返回重复证书的ID。
21880
22000
  :rtype: str
21881
22001
  """
21882
22002
  return self._RepeatCertId
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-ssl
3
- Version: 3.0.1420
3
+ Version: 3.0.1427
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<4.0.0,>=3.0.1427
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1420