tencentcloud-sdk-python-ssl 3.0.1393__tar.gz → 3.0.1397__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.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/setup.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/tencentcloud/ssl/v20191205/models.py +131 -0
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ssl-3.0.1397/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ssl-3.0.1393/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/README.rst +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/tencentcloud/ssl/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/tencentcloud/ssl/v20191205/__init__.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/tencentcloud/ssl/v20191205/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/tencentcloud/ssl/v20191205/ssl_client.py +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ssl-3.0.1393 → tencentcloud-sdk-python-ssl-3.0.1397}/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.1397"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ssl SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2480,6 +2480,8 @@ null:用户上传证书(没有套餐类型),
|
|
|
2480
2480
|
:param _HostingConfig: 托管配置信息
|
|
2481
2481
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2482
2482
|
:type HostingConfig: :class:`tencentcloud.ssl.v20191205.models.HostingConfig`
|
|
2483
|
+
:param _IsHostingUploadRenewCert: 是否是上传托管续费证书
|
|
2484
|
+
:type IsHostingUploadRenewCert: bool
|
|
2483
2485
|
"""
|
|
2484
2486
|
self._OwnerUin = None
|
|
2485
2487
|
self._ProjectId = None
|
|
@@ -2537,6 +2539,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
2537
2539
|
self._CertRevokedTime = None
|
|
2538
2540
|
self._HostingResourceTypes = None
|
|
2539
2541
|
self._HostingConfig = None
|
|
2542
|
+
self._IsHostingUploadRenewCert = None
|
|
2540
2543
|
|
|
2541
2544
|
@property
|
|
2542
2545
|
def OwnerUin(self):
|
|
@@ -3243,6 +3246,17 @@ null:用户上传证书(没有套餐类型),
|
|
|
3243
3246
|
def HostingConfig(self, HostingConfig):
|
|
3244
3247
|
self._HostingConfig = HostingConfig
|
|
3245
3248
|
|
|
3249
|
+
@property
|
|
3250
|
+
def IsHostingUploadRenewCert(self):
|
|
3251
|
+
"""是否是上传托管续费证书
|
|
3252
|
+
:rtype: bool
|
|
3253
|
+
"""
|
|
3254
|
+
return self._IsHostingUploadRenewCert
|
|
3255
|
+
|
|
3256
|
+
@IsHostingUploadRenewCert.setter
|
|
3257
|
+
def IsHostingUploadRenewCert(self, IsHostingUploadRenewCert):
|
|
3258
|
+
self._IsHostingUploadRenewCert = IsHostingUploadRenewCert
|
|
3259
|
+
|
|
3246
3260
|
|
|
3247
3261
|
def _deserialize(self, params):
|
|
3248
3262
|
self._OwnerUin = params.get("OwnerUin")
|
|
@@ -3316,6 +3330,7 @@ null:用户上传证书(没有套餐类型),
|
|
|
3316
3330
|
if params.get("HostingConfig") is not None:
|
|
3317
3331
|
self._HostingConfig = HostingConfig()
|
|
3318
3332
|
self._HostingConfig._deserialize(params.get("HostingConfig"))
|
|
3333
|
+
self._IsHostingUploadRenewCert = params.get("IsHostingUploadRenewCert")
|
|
3319
3334
|
memeber_set = set(params.keys())
|
|
3320
3335
|
for name, value in vars(self).items():
|
|
3321
3336
|
property_name = name[1:]
|
|
@@ -7816,6 +7831,10 @@ null:用户上传证书(没有套餐类型),
|
|
|
7816
7831
|
:param _CertChainInfo: 证书链信息
|
|
7817
7832
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7818
7833
|
:type CertChainInfo: list of CertBasicInfo
|
|
7834
|
+
:param _DomainType: 证书域名类型, 1(单域名);2(多域名);3(泛域名);4(多泛域名)
|
|
7835
|
+
:type DomainType: int
|
|
7836
|
+
:param _CertType: 证书类型,DV(域名型);OV(企业型);EV(增强型)
|
|
7837
|
+
:type CertType: str
|
|
7819
7838
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7820
7839
|
:type RequestId: str
|
|
7821
7840
|
"""
|
|
@@ -7861,6 +7880,8 @@ null:用户上传证书(没有套餐类型),
|
|
|
7861
7880
|
self._EncryptAlgorithm = None
|
|
7862
7881
|
self._DvRevokeAuthDetail = None
|
|
7863
7882
|
self._CertChainInfo = None
|
|
7883
|
+
self._DomainType = None
|
|
7884
|
+
self._CertType = None
|
|
7864
7885
|
self._RequestId = None
|
|
7865
7886
|
|
|
7866
7887
|
@property
|
|
@@ -8443,6 +8464,28 @@ null:用户上传证书(没有套餐类型),
|
|
|
8443
8464
|
def CertChainInfo(self, CertChainInfo):
|
|
8444
8465
|
self._CertChainInfo = CertChainInfo
|
|
8445
8466
|
|
|
8467
|
+
@property
|
|
8468
|
+
def DomainType(self):
|
|
8469
|
+
"""证书域名类型, 1(单域名);2(多域名);3(泛域名);4(多泛域名)
|
|
8470
|
+
:rtype: int
|
|
8471
|
+
"""
|
|
8472
|
+
return self._DomainType
|
|
8473
|
+
|
|
8474
|
+
@DomainType.setter
|
|
8475
|
+
def DomainType(self, DomainType):
|
|
8476
|
+
self._DomainType = DomainType
|
|
8477
|
+
|
|
8478
|
+
@property
|
|
8479
|
+
def CertType(self):
|
|
8480
|
+
"""证书类型,DV(域名型);OV(企业型);EV(增强型)
|
|
8481
|
+
:rtype: str
|
|
8482
|
+
"""
|
|
8483
|
+
return self._CertType
|
|
8484
|
+
|
|
8485
|
+
@CertType.setter
|
|
8486
|
+
def CertType(self, CertType):
|
|
8487
|
+
self._CertType = CertType
|
|
8488
|
+
|
|
8446
8489
|
@property
|
|
8447
8490
|
def RequestId(self):
|
|
8448
8491
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -8521,6 +8564,8 @@ null:用户上传证书(没有套餐类型),
|
|
|
8521
8564
|
obj = CertBasicInfo()
|
|
8522
8565
|
obj._deserialize(item)
|
|
8523
8566
|
self._CertChainInfo.append(obj)
|
|
8567
|
+
self._DomainType = params.get("DomainType")
|
|
8568
|
+
self._CertType = params.get("CertType")
|
|
8524
8569
|
self._RequestId = params.get("RequestId")
|
|
8525
8570
|
|
|
8526
8571
|
|
|
@@ -15279,6 +15324,72 @@ class ManagerInfo(AbstractModel):
|
|
|
15279
15324
|
|
|
15280
15325
|
|
|
15281
15326
|
|
|
15327
|
+
class ManagerPreAuditDomain(AbstractModel):
|
|
15328
|
+
"""管理人预审核的域名列表
|
|
15329
|
+
|
|
15330
|
+
"""
|
|
15331
|
+
|
|
15332
|
+
def __init__(self):
|
|
15333
|
+
r"""
|
|
15334
|
+
:param _Domain: 预审核域名信息
|
|
15335
|
+
:type Domain: str
|
|
15336
|
+
:param _CreateTime: 预审核域名创建时间
|
|
15337
|
+
:type CreateTime: str
|
|
15338
|
+
:param _ExpireTime: 预审核域名过期时间
|
|
15339
|
+
:type ExpireTime: str
|
|
15340
|
+
"""
|
|
15341
|
+
self._Domain = None
|
|
15342
|
+
self._CreateTime = None
|
|
15343
|
+
self._ExpireTime = None
|
|
15344
|
+
|
|
15345
|
+
@property
|
|
15346
|
+
def Domain(self):
|
|
15347
|
+
"""预审核域名信息
|
|
15348
|
+
:rtype: str
|
|
15349
|
+
"""
|
|
15350
|
+
return self._Domain
|
|
15351
|
+
|
|
15352
|
+
@Domain.setter
|
|
15353
|
+
def Domain(self, Domain):
|
|
15354
|
+
self._Domain = Domain
|
|
15355
|
+
|
|
15356
|
+
@property
|
|
15357
|
+
def CreateTime(self):
|
|
15358
|
+
"""预审核域名创建时间
|
|
15359
|
+
:rtype: str
|
|
15360
|
+
"""
|
|
15361
|
+
return self._CreateTime
|
|
15362
|
+
|
|
15363
|
+
@CreateTime.setter
|
|
15364
|
+
def CreateTime(self, CreateTime):
|
|
15365
|
+
self._CreateTime = CreateTime
|
|
15366
|
+
|
|
15367
|
+
@property
|
|
15368
|
+
def ExpireTime(self):
|
|
15369
|
+
"""预审核域名过期时间
|
|
15370
|
+
:rtype: str
|
|
15371
|
+
"""
|
|
15372
|
+
return self._ExpireTime
|
|
15373
|
+
|
|
15374
|
+
@ExpireTime.setter
|
|
15375
|
+
def ExpireTime(self, ExpireTime):
|
|
15376
|
+
self._ExpireTime = ExpireTime
|
|
15377
|
+
|
|
15378
|
+
|
|
15379
|
+
def _deserialize(self, params):
|
|
15380
|
+
self._Domain = params.get("Domain")
|
|
15381
|
+
self._CreateTime = params.get("CreateTime")
|
|
15382
|
+
self._ExpireTime = params.get("ExpireTime")
|
|
15383
|
+
memeber_set = set(params.keys())
|
|
15384
|
+
for name, value in vars(self).items():
|
|
15385
|
+
property_name = name[1:]
|
|
15386
|
+
if property_name in memeber_set:
|
|
15387
|
+
memeber_set.remove(property_name)
|
|
15388
|
+
if len(memeber_set) > 0:
|
|
15389
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
15390
|
+
|
|
15391
|
+
|
|
15392
|
+
|
|
15282
15393
|
class ManagerStatusInfo(AbstractModel):
|
|
15283
15394
|
"""管理人的四种审核状态
|
|
15284
15395
|
|
|
@@ -15294,11 +15405,14 @@ class ManagerStatusInfo(AbstractModel):
|
|
|
15294
15405
|
:type CreateTime: str
|
|
15295
15406
|
:param _ExpireTime: 过期时间
|
|
15296
15407
|
:type ExpireTime: str
|
|
15408
|
+
:param _ManagerPreAuditDomains: 管理人预审核的域名列表
|
|
15409
|
+
:type ManagerPreAuditDomains: list of ManagerPreAuditDomain
|
|
15297
15410
|
"""
|
|
15298
15411
|
self._Type = None
|
|
15299
15412
|
self._Status = None
|
|
15300
15413
|
self._CreateTime = None
|
|
15301
15414
|
self._ExpireTime = None
|
|
15415
|
+
self._ManagerPreAuditDomains = None
|
|
15302
15416
|
|
|
15303
15417
|
@property
|
|
15304
15418
|
def Type(self):
|
|
@@ -15344,12 +15458,29 @@ class ManagerStatusInfo(AbstractModel):
|
|
|
15344
15458
|
def ExpireTime(self, ExpireTime):
|
|
15345
15459
|
self._ExpireTime = ExpireTime
|
|
15346
15460
|
|
|
15461
|
+
@property
|
|
15462
|
+
def ManagerPreAuditDomains(self):
|
|
15463
|
+
"""管理人预审核的域名列表
|
|
15464
|
+
:rtype: list of ManagerPreAuditDomain
|
|
15465
|
+
"""
|
|
15466
|
+
return self._ManagerPreAuditDomains
|
|
15467
|
+
|
|
15468
|
+
@ManagerPreAuditDomains.setter
|
|
15469
|
+
def ManagerPreAuditDomains(self, ManagerPreAuditDomains):
|
|
15470
|
+
self._ManagerPreAuditDomains = ManagerPreAuditDomains
|
|
15471
|
+
|
|
15347
15472
|
|
|
15348
15473
|
def _deserialize(self, params):
|
|
15349
15474
|
self._Type = params.get("Type")
|
|
15350
15475
|
self._Status = params.get("Status")
|
|
15351
15476
|
self._CreateTime = params.get("CreateTime")
|
|
15352
15477
|
self._ExpireTime = params.get("ExpireTime")
|
|
15478
|
+
if params.get("ManagerPreAuditDomains") is not None:
|
|
15479
|
+
self._ManagerPreAuditDomains = []
|
|
15480
|
+
for item in params.get("ManagerPreAuditDomains"):
|
|
15481
|
+
obj = ManagerPreAuditDomain()
|
|
15482
|
+
obj._deserialize(item)
|
|
15483
|
+
self._ManagerPreAuditDomains.append(obj)
|
|
15353
15484
|
memeber_set = set(params.keys())
|
|
15354
15485
|
for name, value in vars(self).items():
|
|
15355
15486
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1397
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1393
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|