tencentcloud-sdk-python-ssl 3.0.1373__tar.gz → 3.0.1490__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 (18) hide show
  1. tencentcloud_sdk_python_ssl-3.0.1490/PKG-INFO +46 -0
  2. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/setup.py +1 -1
  3. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/tencentcloud/ssl/v20191205/errorcodes.py +65 -2
  5. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/tencentcloud/ssl/v20191205/models.py +10766 -8904
  6. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/tencentcloud/ssl/v20191205/ssl_client.py +179 -64
  7. tencentcloud_sdk_python_ssl-3.0.1490/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +46 -0
  8. tencentcloud_sdk_python_ssl-3.0.1490/tencentcloud_sdk_python_ssl.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-ssl-3.0.1373/PKG-INFO +0 -45
  10. tencentcloud-sdk-python-ssl-3.0.1373/tencentcloud_sdk_python_ssl.egg-info/PKG-INFO +0 -45
  11. tencentcloud-sdk-python-ssl-3.0.1373/tencentcloud_sdk_python_ssl.egg-info/requires.txt +0 -1
  12. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/README.rst +0 -0
  13. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/setup.cfg +0 -0
  14. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/tencentcloud/ssl/__init__.py +0 -0
  15. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/tencentcloud/ssl/v20191205/__init__.py +0 -0
  16. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/tencentcloud_sdk_python_ssl.egg-info/SOURCES.txt +0 -0
  17. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/tencentcloud_sdk_python_ssl.egg-info/dependency_links.txt +0 -0
  18. {tencentcloud-sdk-python-ssl-3.0.1373 → tencentcloud_sdk_python_ssl-3.0.1490}/tencentcloud_sdk_python_ssl.egg-info/top_level.txt +0 -0
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: tencentcloud-sdk-python-ssl
3
+ Version: 3.0.1490
4
+ Summary: Tencent Cloud Ssl SDK for Python
5
+ Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
+ Author: Tencent Cloud
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
+ License: Apache License 2.0
9
+ Platform: any
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 2.7
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.6
17
+ Classifier: Programming Language :: Python :: 3.7
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1490
19
+
20
+ ============================
21
+ Tencent Cloud SDK for Python
22
+ ============================
23
+
24
+ Tencent Cloud Python Ssl SDK is the official software development kit, which allows Python developers to write software that makes use of Tencent Cloud services like CVM and CBS.
25
+ The SDK works on Python versions:
26
+
27
+ * 2.7 and greater, including 3.x
28
+
29
+ Quick Start
30
+ -----------
31
+
32
+ First, install the library:
33
+
34
+ .. code-block:: sh
35
+
36
+ $ pip install tencentcloud-sdk-python-common
37
+ $ pip install tencentcloud-sdk-python-ssl
38
+
39
+ or download source code from github and install:
40
+
41
+ .. code-block:: sh
42
+
43
+ $ git clone https://github.com/tencentcloud/tencentcloud-sdk-python.git
44
+ $ cd tencentcloud-sdk-python
45
+ $ python package.py --components common ssl
46
+
@@ -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.1373"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1490,<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.1373'
17
+ __version__ = '3.0.1490'
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf8 -*-
2
- # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
2
+ # Copyright (c) 2017-2025 Tencent. All Rights Reserved.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -32,6 +32,9 @@ FAILEDOPERATION_BOUNDRESOURCES = 'FailedOperation.BoundResources'
32
32
  # CAM鉴权出现错误。
33
33
  FAILEDOPERATION_CAMAUTHORIZEDFAIL = 'FailedOperation.CAMAuthorizedFail'
34
34
 
35
+ # 由于未知原因证书取消失败,请您刷新页面后重试
36
+ FAILEDOPERATION_CANCELAUDITCERTIFICATEFAILED = 'FailedOperation.CancelAuditCertificateFailed'
37
+
35
38
  # 取消订单失败。
36
39
  FAILEDOPERATION_CANCELORDERFAILED = 'FailedOperation.CancelOrderFailed'
37
40
 
@@ -47,6 +50,15 @@ FAILEDOPERATION_CANNOTGETORDER = 'FailedOperation.CannotGetOrder'
47
50
  # 温馨提示:上传的证书内容不符合CA证书的标准格式,请您核对证书类型是否有误
48
51
  FAILEDOPERATION_CERTIFICATECAERROR = 'FailedOperation.CertificateCaError'
49
52
 
53
+ # 多年期证书非首年无法终止审核,如您暂时不用证书,无需验证域名即可
54
+ FAILEDOPERATION_CERTIFICATECANCELFAILEDMULTI = 'FailedOperation.CertificateCancelFailedMulti'
55
+
56
+ # 温馨提示:证书链检测异常,请核对每段证书是否存在异常
57
+ FAILEDOPERATION_CERTIFICATECHAINERROR = 'FailedOperation.CertificateChainError'
58
+
59
+ # CSR解析失败。
60
+ FAILEDOPERATION_CERTIFICATECSRPARSEFAILED = 'FailedOperation.CertificateCsrParseFailed'
61
+
50
62
  # 记录状态必须完结才可以执行该操作。
51
63
  FAILEDOPERATION_CERTIFICATEDEPLOYDETAILROLLBACKSTATUSINVALID = 'FailedOperation.CertificateDeployDetailRollbackStatusInvalid'
52
64
 
@@ -56,6 +68,9 @@ FAILEDOPERATION_CERTIFICATEDEPLOYHASPENDINGRECORD = 'FailedOperation.Certificate
56
68
  # 已选择的云资源无实例,无法更新,请重新核对后重试。
57
69
  FAILEDOPERATION_CERTIFICATEDEPLOYINSTANCEEMPTY = 'FailedOperation.CertificateDeployInstanceEmpty'
58
70
 
71
+ # 部署格式错误
72
+ FAILEDOPERATION_CERTIFICATEDEPLOYINSTANCEFORMATERROR = 'FailedOperation.CertificateDeployInstanceFormatError'
73
+
59
74
  # 证书部署记录不存在。
60
75
  FAILEDOPERATION_CERTIFICATEDEPLOYNOTEXIST = 'FailedOperation.CertificateDeployNotExist'
61
76
 
@@ -86,6 +101,12 @@ FAILEDOPERATION_CERTIFICATEHOSTRESOURCEINSTANCEHUGELIMIT = 'FailedOperation.Cert
86
101
  # 云资源类型无效。
87
102
  FAILEDOPERATION_CERTIFICATEHOSTRESOURCETYPEINVALID = 'FailedOperation.CertificateHostResourceTypeInvalid'
88
103
 
104
+ # 邮箱不能为空
105
+ FAILEDOPERATION_CERTIFICATEINFOSUBMITCONTACTEMAILEMPTY = 'FailedOperation.CertificateInfoSubmitContactEmailEmpty'
106
+
107
+ # 您输入的域名%s格式有误,请您核对后重新提交
108
+ FAILEDOPERATION_CERTIFICATEINFOSUBMITDOMAININVALID = 'FailedOperation.CertificateInfoSubmitDomainInvalid'
109
+
89
110
  # 当前证书状态不可以提交资料
90
111
  FAILEDOPERATION_CERTIFICATEINFOSUBMITSTATUSINVALID = 'FailedOperation.CertificateInfoSubmitStatusInvalid'
91
112
 
@@ -98,6 +119,9 @@ FAILEDOPERATION_CERTIFICATEMATCHERROR = 'FailedOperation.CertificateMatchError'
98
119
  # 证书与私钥不对应。
99
120
  FAILEDOPERATION_CERTIFICATEMISMATCH = 'FailedOperation.CertificateMismatch'
100
121
 
122
+ # 该证书已设置成不允许下载。
123
+ FAILEDOPERATION_CERTIFICATENOTALLOWDOWNLOAD = 'FailedOperation.CertificateNotAllowDownload'
124
+
101
125
  # 证书不可用,请检查后再试。
102
126
  FAILEDOPERATION_CERTIFICATENOTAVAILABLE = 'FailedOperation.CertificateNotAvailable'
103
127
 
@@ -107,12 +131,24 @@ FAILEDOPERATION_CERTIFICATENOTDEPLOYINSTANCE = 'FailedOperation.CertificateNotDe
107
131
  # 证书不存在。
108
132
  FAILEDOPERATION_CERTIFICATENOTFOUND = 'FailedOperation.CertificateNotFound'
109
133
 
134
+ # 该证书不存在或已签发。
135
+ FAILEDOPERATION_CERTIFICATENOTFOUNDORAUDITED = 'FailedOperation.CertificateNotFoundOrAudited'
136
+
110
137
  # 该证书不存在或不可取消。
111
138
  FAILEDOPERATION_CERTIFICATENOTFOUNDORCANTCANCEL = 'FailedOperation.CertificateNotFoundOrCantCancel'
112
139
 
140
+ # 订单正在处理中,请您耐心等待
141
+ FAILEDOPERATION_CERTIFICATEORDERSUBMITPROCESSING = 'FailedOperation.CertificateOrderSubmitProcessing'
142
+
143
+ # 当前选择的根证书无效,请您重新选择
144
+ FAILEDOPERATION_CERTIFICATEORDERSUBMITROOTCAINVALID = 'FailedOperation.CertificateOrderSubmitRootCAInvalid'
145
+
113
146
  # 解析失败,请检查证书是否符合标准,请留意是否有多余的空格
114
147
  FAILEDOPERATION_CERTIFICATEPARSEERROR = 'FailedOperation.CertificateParseError'
115
148
 
149
+ # 您输入的邮箱格式有误,请您核对后重新提交
150
+ FAILEDOPERATION_CERTIFICATEPREVERIFYEMAILINVALID = 'FailedOperation.CertificatePreVerifyEmailInvalid'
151
+
116
152
  # 当前证书状态不允许下载。
117
153
  FAILEDOPERATION_CERTIFICATESTATUSNOTALLOWDOWNLOAD = 'FailedOperation.CertificateStatusNotAllowDownload'
118
154
 
@@ -122,12 +158,21 @@ FAILEDOPERATION_CERTIFICATESTATUSNOTALLOWRESUBMIT = 'FailedOperation.Certificate
122
158
  # 证书当前状态不允许进行域名验证。
123
159
  FAILEDOPERATION_CERTIFICATESTATUSNOTALLOWVERIFY = 'FailedOperation.CertificateStatusNotAllowVerify'
124
160
 
161
+ # 上传证书的托管续费证书不能手动提交订单
162
+ FAILEDOPERATION_CERTIFICATESUBMITHOSTINGCERTERROR = 'FailedOperation.CertificateSubmitHostingCertError'
163
+
164
+ # 证书操作参数无效,证书ID数量超过100。
165
+ FAILEDOPERATION_CERTIFICATESYNCTASKCERTIFICATEIDCOUNTINVALID = 'FailedOperation.CertificateSyncTaskCertificateIdCountInvalid'
166
+
125
167
  # 证书关联云资源查询任务ID无效
126
168
  FAILEDOPERATION_CERTIFICATESYNCTASKIDINVALID = 'FailedOperation.CertificateSyncTaskIdInvalid'
127
169
 
128
170
  # 无法查到当前证书类型详情。
129
171
  FAILEDOPERATION_CERTIFICATETYPEINFONOTFOUND = 'FailedOperation.CertificateTypeInfoNotFound'
130
172
 
173
+ # 当前为白名单功能,非白名单用户无法使用该功能,请联系SSL证书特殊处理。
174
+ FAILEDOPERATION_CERTIFICATEWHITEFUNCERROR = 'FailedOperation.CertificateWhiteFuncError'
175
+
131
176
  # 证书确认函文件过大(需小于1.4M)。
132
177
  FAILEDOPERATION_CONFIRMLETTERTOOLARGE = 'FailedOperation.ConfirmLetterTooLarge'
133
178
 
@@ -149,6 +194,9 @@ FAILEDOPERATION_FILETOOLARGE = 'FailedOperation.FileTooLarge'
149
194
  # 文件尺寸太小,请上传清晰图片。
150
195
  FAILEDOPERATION_FILETOOSMALL = 'FailedOperation.FileTooSmall'
151
196
 
197
+ # 生产CSR失败
198
+ FAILEDOPERATION_GENCSRFAIL = 'FailedOperation.GenCSRFail'
199
+
152
200
  # 公司管理人状态错误。
153
201
  FAILEDOPERATION_ILLEGALMANAGERSTATUS = 'FailedOperation.IllegalManagerStatus'
154
202
 
@@ -221,6 +269,12 @@ FAILEDOPERATION_SYSTEMERROR = 'FailedOperation.SystemError'
221
269
  # 计费中心错误。
222
270
  FAILEDOPERATION_TRADEERROR = 'FailedOperation.TradeError'
223
271
 
272
+ # 当前接口不支持上传确认函功能,请去腾讯云控制台进行操作
273
+ FAILEDOPERATION_UPLOADCONFIRMCERTIFICATENOTSUPPORT = 'FailedOperation.UploadConfirmCertificateNotSupport'
274
+
275
+ # 当前证书是DV证书,不支持上传确认函
276
+ FAILEDOPERATION_UPLOADCONFIRMCERTIFICATENOTSUPPORTDV = 'FailedOperation.UploadConfirmCertificateNotSupportDV'
277
+
224
278
  # 内部错误。
225
279
  INTERNALERROR = 'InternalError'
226
280
 
@@ -263,6 +317,9 @@ INVALIDPARAMETER_PERIODINVALID = 'InvalidParameter.PeriodInvalid'
263
317
  # 产品PID无效。
264
318
  INVALIDPARAMETER_PRODUCTPIDINVALID = 'InvalidParameter.ProductPidInvalid'
265
319
 
320
+ # Region不允许为空
321
+ INVALIDPARAMETER_REGIONNOTEMPTY = 'InvalidParameter.RegionNotEmpty'
322
+
266
323
  # 算法无效。
267
324
  INVALIDPARAMETER_RENEWALGORITHMINVALID = 'InvalidParameter.RenewAlgorithmInvalid'
268
325
 
@@ -278,7 +335,13 @@ INVALIDPARAMETER_WITHDETAILREASON = 'InvalidParameter.WithDetailReason'
278
335
  # 参数取值错误。
279
336
  INVALIDPARAMETERVALUE = 'InvalidParameterValue'
280
337
 
281
- # 中间根证书不一致
338
+ # 证书域名过长: 域名不能超过64位,请您重新输入
339
+ INVALIDPARAMETERVALUE_CERTIFICATEDOMAINMAXLENGTHINVALID = 'InvalidParameterValue.CertificateDomainMaxLengthInvalid'
340
+
341
+ # 邮箱格式有误,请您重新输入
342
+ INVALIDPARAMETERVALUE_CERTIFICATEEMAILPARSEINVALID = 'InvalidParameterValue.CertificateEmailParseInvalid'
343
+
344
+ # 中间证书不一致
282
345
  INVALIDPARAMETERVALUE_INTERMEDIATECERTNOTSAME = 'InvalidParameterValue.IntermediateCertNotSame'
283
346
 
284
347
  # 单位时间内接口请求频率达到限制。