tencentcloud-sdk-python-ssl 3.0.1420__tar.gz → 3.0.1423__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.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/setup.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/tencentcloud/ssl/v20191205/models.py +47 -2
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ssl-3.0.1423/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ssl-3.0.1420/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/README.rst +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/tencentcloud/ssl/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/tencentcloud/ssl/v20191205/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1420 → tencentcloud-sdk-python-ssl-3.0.1423}/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.1423,<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(),
|
|
@@ -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:]
|
|
@@ -12164,6 +12179,8 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
|
|
|
12164
12179
|
:type FailedTotalCount: int
|
|
12165
12180
|
:param _RunningTotalCount: 部署中总数
|
|
12166
12181
|
:type RunningTotalCount: int
|
|
12182
|
+
:param _PendingTotalCount: 带部署总数
|
|
12183
|
+
:type PendingTotalCount: int
|
|
12167
12184
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12168
12185
|
:type RequestId: str
|
|
12169
12186
|
"""
|
|
@@ -12172,6 +12189,7 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
|
|
|
12172
12189
|
self._SuccessTotalCount = None
|
|
12173
12190
|
self._FailedTotalCount = None
|
|
12174
12191
|
self._RunningTotalCount = None
|
|
12192
|
+
self._PendingTotalCount = None
|
|
12175
12193
|
self._RequestId = None
|
|
12176
12194
|
|
|
12177
12195
|
@property
|
|
@@ -12229,6 +12247,17 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
|
|
|
12229
12247
|
def RunningTotalCount(self, RunningTotalCount):
|
|
12230
12248
|
self._RunningTotalCount = RunningTotalCount
|
|
12231
12249
|
|
|
12250
|
+
@property
|
|
12251
|
+
def PendingTotalCount(self):
|
|
12252
|
+
"""带部署总数
|
|
12253
|
+
:rtype: int
|
|
12254
|
+
"""
|
|
12255
|
+
return self._PendingTotalCount
|
|
12256
|
+
|
|
12257
|
+
@PendingTotalCount.setter
|
|
12258
|
+
def PendingTotalCount(self, PendingTotalCount):
|
|
12259
|
+
self._PendingTotalCount = PendingTotalCount
|
|
12260
|
+
|
|
12232
12261
|
@property
|
|
12233
12262
|
def RequestId(self):
|
|
12234
12263
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -12252,6 +12281,7 @@ class DescribeHostDeployRecordDetailResponse(AbstractModel):
|
|
|
12252
12281
|
self._SuccessTotalCount = params.get("SuccessTotalCount")
|
|
12253
12282
|
self._FailedTotalCount = params.get("FailedTotalCount")
|
|
12254
12283
|
self._RunningTotalCount = params.get("RunningTotalCount")
|
|
12284
|
+
self._PendingTotalCount = params.get("PendingTotalCount")
|
|
12255
12285
|
self._RequestId = params.get("RequestId")
|
|
12256
12286
|
|
|
12257
12287
|
|
|
@@ -13240,6 +13270,8 @@ class DescribeHostUpdateRecordDetailResponse(AbstractModel):
|
|
|
13240
13270
|
:type FailedTotalCount: int
|
|
13241
13271
|
:param _RunningTotalCount: 部署中总数,如果取不到返回0
|
|
13242
13272
|
:type RunningTotalCount: int
|
|
13273
|
+
:param _PendingTotalCount: 待部署总数
|
|
13274
|
+
:type PendingTotalCount: int
|
|
13243
13275
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13244
13276
|
:type RequestId: str
|
|
13245
13277
|
"""
|
|
@@ -13248,6 +13280,7 @@ class DescribeHostUpdateRecordDetailResponse(AbstractModel):
|
|
|
13248
13280
|
self._SuccessTotalCount = None
|
|
13249
13281
|
self._FailedTotalCount = None
|
|
13250
13282
|
self._RunningTotalCount = None
|
|
13283
|
+
self._PendingTotalCount = None
|
|
13251
13284
|
self._RequestId = None
|
|
13252
13285
|
|
|
13253
13286
|
@property
|
|
@@ -13305,6 +13338,17 @@ class DescribeHostUpdateRecordDetailResponse(AbstractModel):
|
|
|
13305
13338
|
def RunningTotalCount(self, RunningTotalCount):
|
|
13306
13339
|
self._RunningTotalCount = RunningTotalCount
|
|
13307
13340
|
|
|
13341
|
+
@property
|
|
13342
|
+
def PendingTotalCount(self):
|
|
13343
|
+
"""待部署总数
|
|
13344
|
+
:rtype: int
|
|
13345
|
+
"""
|
|
13346
|
+
return self._PendingTotalCount
|
|
13347
|
+
|
|
13348
|
+
@PendingTotalCount.setter
|
|
13349
|
+
def PendingTotalCount(self, PendingTotalCount):
|
|
13350
|
+
self._PendingTotalCount = PendingTotalCount
|
|
13351
|
+
|
|
13308
13352
|
@property
|
|
13309
13353
|
def RequestId(self):
|
|
13310
13354
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -13328,6 +13372,7 @@ class DescribeHostUpdateRecordDetailResponse(AbstractModel):
|
|
|
13328
13372
|
self._SuccessTotalCount = params.get("SuccessTotalCount")
|
|
13329
13373
|
self._FailedTotalCount = params.get("FailedTotalCount")
|
|
13330
13374
|
self._RunningTotalCount = params.get("RunningTotalCount")
|
|
13375
|
+
self._PendingTotalCount = params.get("PendingTotalCount")
|
|
13331
13376
|
self._RequestId = params.get("RequestId")
|
|
13332
13377
|
|
|
13333
13378
|
|
|
@@ -21854,7 +21899,7 @@ class UploadCertificateResponse(AbstractModel):
|
|
|
21854
21899
|
r"""
|
|
21855
21900
|
:param _CertificateId: 证书 ID。
|
|
21856
21901
|
:type CertificateId: str
|
|
21857
|
-
:param _RepeatCertId:
|
|
21902
|
+
:param _RepeatCertId: 当入参Repeatable为false的时候 返回的重复证书的ID,注意当用户上传相同的证书超过5000张的时候,当前接口会无视入参Repeatable,直接返回重复证书的ID。
|
|
21858
21903
|
:type RepeatCertId: str
|
|
21859
21904
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
21860
21905
|
:type RequestId: str
|
|
@@ -21876,7 +21921,7 @@ class UploadCertificateResponse(AbstractModel):
|
|
|
21876
21921
|
|
|
21877
21922
|
@property
|
|
21878
21923
|
def RepeatCertId(self):
|
|
21879
|
-
"""
|
|
21924
|
+
"""当入参Repeatable为false的时候 返回的重复证书的ID,注意当用户上传相同的证书超过5000张的时候,当前接口会无视入参Repeatable,直接返回重复证书的ID。
|
|
21880
21925
|
:rtype: str
|
|
21881
21926
|
"""
|
|
21882
21927
|
return self._RepeatCertId
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1423
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1420
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|