tencentcloud-sdk-python 3.0.1419__py2.py3-none-any.whl → 3.0.1420__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/ai3d/v20250513/models.py +2 -2
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/emr/v20190103/models.py +355 -4
- tencentcloud/ess/v20201111/models.py +8 -2
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/lke/v20231130/models.py +395 -2
- tencentcloud/mrs/v20200910/models.py +15 -0
- tencentcloud/nlp/v20190408/errorcodes.py +0 -21
- tencentcloud/nlp/v20190408/models.py +99 -1004
- tencentcloud/nlp/v20190408/nlp_client.py +0 -138
- tencentcloud/ses/v20201002/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/errorcodes.py +6 -0
- tencentcloud/tdmq/v20200217/models.py +15 -0
- tencentcloud/tione/v20211111/models.py +23 -0
- tencentcloud/tke/v20180525/models.py +46 -46
- tencentcloud/tsf/v20180326/errorcodes.py +6 -0
- tencentcloud/tsf/v20180326/models.py +16 -0
- tencentcloud/vod/v20180717/models.py +8 -4
- {tencentcloud_sdk_python-3.0.1419.dist-info → tencentcloud_sdk_python-3.0.1420.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1419.dist-info → tencentcloud_sdk_python-3.0.1420.dist-info}/RECORD +26 -26
- {tencentcloud_sdk_python-3.0.1419.dist-info → tencentcloud_sdk_python-3.0.1420.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1419.dist-info → tencentcloud_sdk_python-3.0.1420.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1419.dist-info → tencentcloud_sdk_python-3.0.1420.dist-info}/top_level.txt +0 -0
@@ -14,9 +14,6 @@
|
|
14
14
|
# limitations under the License.
|
15
15
|
|
16
16
|
|
17
|
-
# 操作失败。
|
18
|
-
FAILEDOPERATION = 'FailedOperation'
|
19
|
-
|
20
17
|
# 余额不足,开通失败,请充值后再开通。
|
21
18
|
FAILEDOPERATION_BALANCEINSUFFICIENT = 'FailedOperation.BalanceInsufficient'
|
22
19
|
|
@@ -26,9 +23,6 @@ FAILEDOPERATION_INNERERROR = 'FailedOperation.InnerError'
|
|
26
23
|
# 暂无春联生成,请更换关键词重试。
|
27
24
|
FAILEDOPERATION_NOCOUPLETS = 'FailedOperation.NoCouplets'
|
28
25
|
|
29
|
-
# 暂无诗词生成,请更换关键词重试。
|
30
|
-
FAILEDOPERATION_NOPOETRY = 'FailedOperation.NoPoetry'
|
31
|
-
|
32
26
|
# 暂无结果,请更换文本重试。
|
33
27
|
FAILEDOPERATION_NORESULTS = 'FailedOperation.NoResults'
|
34
28
|
|
@@ -65,21 +59,12 @@ INTERNALERROR_TEXTCLASSIFYERROR = 'InternalError.TextClassifyError'
|
|
65
59
|
# 文本解析异常。
|
66
60
|
INTERNALERROR_TEXTPARSINGERROR = 'InternalError.TextParsingError'
|
67
61
|
|
68
|
-
# 服务调用失败。
|
69
|
-
INVALIDPARAMETER_SERVICEERROR = 'InvalidParameter.ServiceError'
|
70
|
-
|
71
62
|
# 文本长度超过限制。
|
72
63
|
INVALIDPARAMETER_TEXTTOOLONGCODE = 'InvalidParameter.TextTooLongCode'
|
73
64
|
|
74
|
-
# Genre非法,请参考Genre参数说明。
|
75
|
-
INVALIDPARAMETERVALUE_GENRE = 'InvalidParameterValue.Genre'
|
76
|
-
|
77
65
|
# 参数不合法。
|
78
66
|
INVALIDPARAMETERVALUE_INVALIDPARAMETER = 'InvalidParameterValue.InvalidParameter'
|
79
67
|
|
80
|
-
# PoetryType非法,请参考PoetryType参数说明。
|
81
|
-
INVALIDPARAMETERVALUE_POETRYTYPE = 'InvalidParameterValue.PoetryType'
|
82
|
-
|
83
68
|
# Text输入含有敏感信息。
|
84
69
|
INVALIDPARAMETERVALUE_SENSITIVETEXT = 'InvalidParameterValue.SensitiveText'
|
85
70
|
|
@@ -107,9 +92,6 @@ RESOURCEINSUFFICIENT_QUOTARUNOUT = 'ResourceInsufficient.QuotaRunOut'
|
|
107
92
|
# 资源不存在。
|
108
93
|
RESOURCENOTFOUND = 'ResourceNotFound'
|
109
94
|
|
110
|
-
# 资源不可用。
|
111
|
-
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
112
|
-
|
113
95
|
# 账号已被冻结。
|
114
96
|
RESOURCEUNAVAILABLE_FREEZE = 'ResourceUnavailable.Freeze'
|
115
97
|
|
@@ -125,9 +107,6 @@ RESOURCEUNAVAILABLE_NOTEXIST = 'ResourceUnavailable.NotExist'
|
|
125
107
|
# 资源已被回收。
|
126
108
|
RESOURCEUNAVAILABLE_RECOVER = 'ResourceUnavailable.Recover'
|
127
109
|
|
128
|
-
# 您的账号尚未开通NLP服务,请登录腾讯云NLP控制台进行服务开通后再使用
|
129
|
-
RESOURCEUNAVAILABLE_SERVICENOTOPENEDERROR = 'ResourceUnavailable.ServiceNotOpenedError'
|
130
|
-
|
131
110
|
# 账号已停服。
|
132
111
|
RESOURCEUNAVAILABLE_STOPUSING = 'ResourceUnavailable.StopUsing'
|
133
112
|
|