tencentcloud-sdk-python 3.0.1449__py2.py3-none-any.whl → 3.0.1451__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/cbs/v20170312/models.py +2 -2
- tencentcloud/dcdb/v20180411/dcdb_client.py +95 -0
- tencentcloud/dcdb/v20180411/errorcodes.py +9 -0
- tencentcloud/dcdb/v20180411/models.py +732 -0
- tencentcloud/ioa/v20220601/models.py +23 -8
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +92 -0
- tencentcloud/iotexplorer/v20190423/models.py +614 -0
- tencentcloud/lke/v20231130/models.py +132 -0
- tencentcloud/lkeap/v20240522/errorcodes.py +1 -1
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/lkeap/v20240522/models.py +111 -12
- tencentcloud/mariadb/v20170312/errorcodes.py +9 -0
- tencentcloud/mariadb/v20170312/mariadb_client.py +95 -0
- tencentcloud/mariadb/v20170312/models.py +702 -0
- tencentcloud/mna/v20210119/mna_client.py +23 -0
- tencentcloud/mna/v20210119/models.py +237 -0
- tencentcloud/oceanus/v20190422/models.py +156 -0
- tencentcloud/redis/v20180412/models.py +2 -2
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/tcb/v20180608/models.py +15 -0
- tencentcloud/tcbr/v20220217/models.py +15 -0
- tencentcloud/teo/v20220901/models.py +2 -2
- tencentcloud/tke/v20180525/models.py +12 -12
- tencentcloud/trtc/v20190722/models.py +2 -2
- tencentcloud/vclm/v20240523/models.py +2 -2
- tencentcloud/waf/v20180125/errorcodes.py +78 -0
- tencentcloud/waf/v20180125/models.py +2620 -69
- tencentcloud/waf/v20180125/waf_client.py +164 -0
- {tencentcloud_sdk_python-3.0.1449.dist-info → tencentcloud_sdk_python-3.0.1451.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1449.dist-info → tencentcloud_sdk_python-3.0.1451.dist-info}/RECORD +34 -34
- {tencentcloud_sdk_python-3.0.1449.dist-info → tencentcloud_sdk_python-3.0.1451.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1449.dist-info → tencentcloud_sdk_python-3.0.1451.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1449.dist-info → tencentcloud_sdk_python-3.0.1451.dist-info}/top_level.txt +0 -0
@@ -45122,15 +45122,15 @@ class SuperNodeResource(AbstractModel):
|
|
45122
45122
|
|
45123
45123
|
def __init__(self):
|
45124
45124
|
r"""
|
45125
|
-
:param _NodeName:
|
45125
|
+
:param _NodeName: 节点名称,此字段在出参中有效。
|
45126
45126
|
:type NodeName: str
|
45127
|
-
:param _Num:
|
45127
|
+
:param _Num: 节点上的资源总数,QuotaType为 exact 时,表示创建指定规格的精确配额数量。
|
45128
45128
|
:type Num: int
|
45129
|
-
:param _Cpu:
|
45129
|
+
:param _Cpu: 节点上的总核数,QuotaType为 exact 时表示指定规格的核数。
|
45130
45130
|
:type Cpu: float
|
45131
|
-
:param _Memory:
|
45131
|
+
:param _Memory: 节点上的总内存数,QuotaType为 exact 时表示指定规格的内存,单位:Gi
|
45132
45132
|
:type Memory: float
|
45133
|
-
:param _Gpu: 节点上的总 GPU
|
45133
|
+
:param _Gpu: 节点上的总 GPU 卡数,QuotaType为 exact 时表示指定规格的GPU卡数。
|
45134
45134
|
:type Gpu: float
|
45135
45135
|
:param _QuotaType: 节点资源的配额类型,exact表示精确配额,fuzzy 表示模糊配额。
|
45136
45136
|
:type QuotaType: str
|
@@ -45138,7 +45138,7 @@ class SuperNodeResource(AbstractModel):
|
|
45138
45138
|
:type ChargeType: str
|
45139
45139
|
:param _ResourceType: QuotaType为 exact 时,此字段有效,表示精确配额的资源类型。
|
45140
45140
|
:type ResourceType: str
|
45141
|
-
:param _DisasterRecoverGroupId: 置放群组 ID
|
45141
|
+
:param _DisasterRecoverGroupId: 置放群组 ID,QuotaType为 exact 时有效,表示购买的精确配额需满足置放群组。可通过 [DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/product/213/17810) 接口返回值中的DisasterRecoverGroupId获取。
|
45142
45142
|
:type DisasterRecoverGroupId: str
|
45143
45143
|
"""
|
45144
45144
|
self._NodeName = None
|
@@ -45153,7 +45153,7 @@ class SuperNodeResource(AbstractModel):
|
|
45153
45153
|
|
45154
45154
|
@property
|
45155
45155
|
def NodeName(self):
|
45156
|
-
"""
|
45156
|
+
"""节点名称,此字段在出参中有效。
|
45157
45157
|
:rtype: str
|
45158
45158
|
"""
|
45159
45159
|
return self._NodeName
|
@@ -45164,7 +45164,7 @@ class SuperNodeResource(AbstractModel):
|
|
45164
45164
|
|
45165
45165
|
@property
|
45166
45166
|
def Num(self):
|
45167
|
-
"""
|
45167
|
+
"""节点上的资源总数,QuotaType为 exact 时,表示创建指定规格的精确配额数量。
|
45168
45168
|
:rtype: int
|
45169
45169
|
"""
|
45170
45170
|
return self._Num
|
@@ -45175,7 +45175,7 @@ class SuperNodeResource(AbstractModel):
|
|
45175
45175
|
|
45176
45176
|
@property
|
45177
45177
|
def Cpu(self):
|
45178
|
-
"""
|
45178
|
+
"""节点上的总核数,QuotaType为 exact 时表示指定规格的核数。
|
45179
45179
|
:rtype: float
|
45180
45180
|
"""
|
45181
45181
|
return self._Cpu
|
@@ -45186,7 +45186,7 @@ class SuperNodeResource(AbstractModel):
|
|
45186
45186
|
|
45187
45187
|
@property
|
45188
45188
|
def Memory(self):
|
45189
|
-
"""
|
45189
|
+
"""节点上的总内存数,QuotaType为 exact 时表示指定规格的内存,单位:Gi
|
45190
45190
|
:rtype: float
|
45191
45191
|
"""
|
45192
45192
|
return self._Memory
|
@@ -45197,7 +45197,7 @@ class SuperNodeResource(AbstractModel):
|
|
45197
45197
|
|
45198
45198
|
@property
|
45199
45199
|
def Gpu(self):
|
45200
|
-
"""节点上的总 GPU
|
45200
|
+
"""节点上的总 GPU 卡数,QuotaType为 exact 时表示指定规格的GPU卡数。
|
45201
45201
|
:rtype: float
|
45202
45202
|
"""
|
45203
45203
|
return self._Gpu
|
@@ -45241,7 +45241,7 @@ class SuperNodeResource(AbstractModel):
|
|
45241
45241
|
|
45242
45242
|
@property
|
45243
45243
|
def DisasterRecoverGroupId(self):
|
45244
|
-
"""置放群组 ID
|
45244
|
+
"""置放群组 ID,QuotaType为 exact 时有效,表示购买的精确配额需满足置放群组。可通过 [DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/product/213/17810) 接口返回值中的DisasterRecoverGroupId获取。
|
45245
45245
|
:rtype: str
|
45246
45246
|
"""
|
45247
45247
|
return self._DisasterRecoverGroupId
|
@@ -10695,7 +10695,7 @@ yidun : 网易易盾审核 (支持 1:音频切片审核,2:视频截帧审核
|
|
10695
10695
|
:type ModerationSupplier: str
|
10696
10696
|
:param _ModerationSupplierParam: 第三方审核商送审需要配置信息
|
10697
10697
|
:type ModerationSupplierParam: :class:`tencentcloud.trtc.v20190722.models.ModerationSupplierParam`
|
10698
|
-
:param _SaveModerationFile:
|
10698
|
+
:param _SaveModerationFile: 是否保存文件 0不保存文件 1保存所有文件 2仅保存命中文件
|
10699
10699
|
:type SaveModerationFile: int
|
10700
10700
|
:param _CallbackAllResults: 是否回调所有审核结果:0 默认回调所有结果 1 仅回调命中结果
|
10701
10701
|
:type CallbackAllResults: int
|
@@ -10784,7 +10784,7 @@ yidun : 网易易盾审核 (支持 1:音频切片审核,2:视频截帧审核
|
|
10784
10784
|
|
10785
10785
|
@property
|
10786
10786
|
def SaveModerationFile(self):
|
10787
|
-
"""
|
10787
|
+
"""是否保存文件 0不保存文件 1保存所有文件 2仅保存命中文件
|
10788
10788
|
:rtype: int
|
10789
10789
|
"""
|
10790
10790
|
return self._SaveModerationFile
|
@@ -1409,7 +1409,7 @@ class SubmitTemplateToVideoJobRequest(AbstractModel):
|
|
1409
1409
|
|
1410
1410
|
def __init__(self):
|
1411
1411
|
r"""
|
1412
|
-
:param _Template: 特效模板名称。请在 [
|
1412
|
+
:param _Template: 特效模板名称。请在 [视频特效模板列表](https://cloud.tencent.com/document/product/1616/119194) 中选择想要生成的特效对应的 template 名称。
|
1413
1413
|
:type Template: str
|
1414
1414
|
:param _Images: 参考图像,最多输入2张图。
|
1415
1415
|
- 支持传入图片Base64编码或图片URL(确保可访问)
|
@@ -1440,7 +1440,7 @@ class SubmitTemplateToVideoJobRequest(AbstractModel):
|
|
1440
1440
|
|
1441
1441
|
@property
|
1442
1442
|
def Template(self):
|
1443
|
-
"""特效模板名称。请在 [
|
1443
|
+
"""特效模板名称。请在 [视频特效模板列表](https://cloud.tencent.com/document/product/1616/119194) 中选择想要生成的特效对应的 template 名称。
|
1444
1444
|
:rtype: str
|
1445
1445
|
"""
|
1446
1446
|
return self._Template
|
@@ -35,30 +35,57 @@ FAILEDOPERATION_CLSDBOPERATIONFAILED = 'FailedOperation.CLSDBOperationFailed'
|
|
35
35
|
# CLS内部错误。
|
36
36
|
FAILEDOPERATION_CLSINTERNALERROR = 'FailedOperation.CLSInternalError'
|
37
37
|
|
38
|
+
# 日志主题正在清空中
|
39
|
+
FAILEDOPERATION_CLSRESOURCESNOTFOUND = 'FailedOperation.CLSResourcesNotFound'
|
40
|
+
|
38
41
|
# 证书不存在
|
39
42
|
FAILEDOPERATION_CERTIFICATENOTFOUND = 'FailedOperation.CertificateNotFound'
|
40
43
|
|
41
44
|
# 操作CH数据库失败
|
42
45
|
FAILEDOPERATION_CLICKHOUSEOPERATIONFAILED = 'FailedOperation.ClickHouseOperationFailed'
|
43
46
|
|
47
|
+
# FailedOperation.InvalidContext
|
48
|
+
FAILEDOPERATION_INVALIDCONTEXT = 'FailedOperation.InvalidContext'
|
49
|
+
|
44
50
|
# 操作Mongo数据库失败
|
45
51
|
FAILEDOPERATION_MONGOOPERATIONFAILED = 'FailedOperation.MongoOperationFailed'
|
46
52
|
|
47
53
|
# 操作Mysql数据库失败
|
48
54
|
FAILEDOPERATION_MYSQLDBOPERATIONFAILED = 'FailedOperation.MysqlDBOperationFailed'
|
49
55
|
|
56
|
+
# FailedOperation.QueryError
|
57
|
+
FAILEDOPERATION_QUERYERROR = 'FailedOperation.QueryError'
|
58
|
+
|
50
59
|
# 操作Redis数据库失败
|
51
60
|
FAILEDOPERATION_REDISOPERATIONFAILED = 'FailedOperation.RedisOperationFailed'
|
52
61
|
|
62
|
+
# FailedOperation.SearchTimeout
|
63
|
+
FAILEDOPERATION_SEARCHTIMEOUT = 'FailedOperation.SearchTimeout'
|
64
|
+
|
53
65
|
# 删除的Session正在被启用
|
54
66
|
FAILEDOPERATION_SESSIONINUSED = 'FailedOperation.SessionInUsed'
|
55
67
|
|
68
|
+
# FailedOperation.SyntaxError
|
69
|
+
FAILEDOPERATION_SYNTAXERROR = 'FailedOperation.SyntaxError'
|
70
|
+
|
71
|
+
# FailedOperation.TagQpsLimit
|
72
|
+
FAILEDOPERATION_TAGQPSLIMIT = 'FailedOperation.TagQpsLimit'
|
73
|
+
|
56
74
|
# 黑白名单添加数超过上限
|
57
75
|
FAILEDOPERATION_THENUMBEROFADDEDBLACKANDWHITELISTEXCEEDSTHEUPPERLIMIT = 'FailedOperation.TheNumberOfAddedBlackAndWhiteListExceedsTheUpperLimit'
|
58
76
|
|
59
77
|
# 一次性删除数量达到上限
|
60
78
|
FAILEDOPERATION_THENUMBEROFONETIMEDELETIONSREACHEDTHEUPPERLIMIT = 'FailedOperation.TheNumberOfOneTimeDeletionsReachedTheUpperLimit'
|
61
79
|
|
80
|
+
# FailedOperation.Timeout
|
81
|
+
FAILEDOPERATION_TIMEOUT = 'FailedOperation.Timeout'
|
82
|
+
|
83
|
+
# FailedOperation.TopicClosed
|
84
|
+
FAILEDOPERATION_TOPICCLOSED = 'FailedOperation.TopicClosed'
|
85
|
+
|
86
|
+
# FailedOperation.TopicIsolated
|
87
|
+
FAILEDOPERATION_TOPICISOLATED = 'FailedOperation.TopicIsolated'
|
88
|
+
|
62
89
|
# 内部错误。
|
63
90
|
INTERNALERROR = 'InternalError'
|
64
91
|
|
@@ -71,6 +98,15 @@ INTERNALERROR_DBERR = 'InternalError.DBErr'
|
|
71
98
|
# 调用SSL证书接口发生内部错误
|
72
99
|
INTERNALERROR_SSLCALLFAILED = 'InternalError.SSLCallFailed'
|
73
100
|
|
101
|
+
# InternalError.SearchError
|
102
|
+
INTERNALERROR_SEARCHERROR = 'InternalError.SearchError'
|
103
|
+
|
104
|
+
# InternalError.SearchFailed
|
105
|
+
INTERNALERROR_SEARCHFAILED = 'InternalError.SearchFailed'
|
106
|
+
|
107
|
+
# InternalError.ServerBusy
|
108
|
+
INTERNALERROR_SERVERBUSY = 'InternalError.ServerBusy'
|
109
|
+
|
74
110
|
# InternalError.Unknown
|
75
111
|
INTERNALERROR_UNKNOWN = 'InternalError.Unknown'
|
76
112
|
|
@@ -155,6 +191,18 @@ INVALIDPARAMETERVALUE_INVALIDREQUEST = 'InvalidParameterValue.InvalidRequest'
|
|
155
191
|
# 超过配额限制。
|
156
192
|
LIMITEXCEEDED = 'LimitExceeded'
|
157
193
|
|
194
|
+
# LimitExceeded.Export
|
195
|
+
LIMITEXCEEDED_EXPORT = 'LimitExceeded.Export'
|
196
|
+
|
197
|
+
# LimitExceeded.LogSearch
|
198
|
+
LIMITEXCEEDED_LOGSEARCH = 'LimitExceeded.LogSearch'
|
199
|
+
|
200
|
+
# LimitExceeded.SearchResources
|
201
|
+
LIMITEXCEEDED_SEARCHRESOURCES = 'LimitExceeded.SearchResources'
|
202
|
+
|
203
|
+
# LimitExceeded.SearchResultTooLarge
|
204
|
+
LIMITEXCEEDED_SEARCHRESULTTOOLARGE = 'LimitExceeded.SearchResultTooLarge'
|
205
|
+
|
158
206
|
# SpecificationErr
|
159
207
|
LIMITEXCEEDED_SPECIFICATIONERR = 'LimitExceeded.SpecificationErr'
|
160
208
|
|
@@ -164,6 +212,27 @@ MISSINGPARAMETER = 'MissingParameter'
|
|
164
212
|
# 操作被拒绝。
|
165
213
|
OPERATIONDENIED = 'OperationDenied'
|
166
214
|
|
215
|
+
# OperationDenied.ACLFailed
|
216
|
+
OPERATIONDENIED_ACLFAILED = 'OperationDenied.ACLFailed'
|
217
|
+
|
218
|
+
# OperationDenied.AccountDestroy
|
219
|
+
OPERATIONDENIED_ACCOUNTDESTROY = 'OperationDenied.AccountDestroy'
|
220
|
+
|
221
|
+
# OperationDenied.AccountIsolate
|
222
|
+
OPERATIONDENIED_ACCOUNTISOLATE = 'OperationDenied.AccountIsolate'
|
223
|
+
|
224
|
+
# OperationDenied.AccountNotExists
|
225
|
+
OPERATIONDENIED_ACCOUNTNOTEXISTS = 'OperationDenied.AccountNotExists'
|
226
|
+
|
227
|
+
# OperationDenied.AnalysisSwitchClose
|
228
|
+
OPERATIONDENIED_ANALYSISSWITCHCLOSE = 'OperationDenied.AnalysisSwitchClose'
|
229
|
+
|
230
|
+
# OperationDenied.NewSyntaxNotSupported
|
231
|
+
OPERATIONDENIED_NEWSYNTAXNOTSUPPORTED = 'OperationDenied.NewSyntaxNotSupported'
|
232
|
+
|
233
|
+
# OperationDenied.OperationNotSupportInSearchLow
|
234
|
+
OPERATIONDENIED_OPERATIONNOTSUPPORTINSEARCHLOW = 'OperationDenied.OperationNotSupportInSearchLow'
|
235
|
+
|
167
236
|
# 请求的次数超过了频率限制。
|
168
237
|
REQUESTLIMITEXCEEDED = 'RequestLimitExceeded'
|
169
238
|
|
@@ -179,9 +248,18 @@ RESOURCEINSUFFICIENT = 'ResourceInsufficient'
|
|
179
248
|
# 资源不存在。
|
180
249
|
RESOURCENOTFOUND = 'ResourceNotFound'
|
181
250
|
|
251
|
+
# ResourceNotFound.ExportNotExist
|
252
|
+
RESOURCENOTFOUND_EXPORTNOTEXIST = 'ResourceNotFound.ExportNotExist'
|
253
|
+
|
254
|
+
# ResourceNotFound.LogsetNotExist
|
255
|
+
RESOURCENOTFOUND_LOGSETNOTEXIST = 'ResourceNotFound.LogsetNotExist'
|
256
|
+
|
182
257
|
# ResourceNotFound.NotFound
|
183
258
|
RESOURCENOTFOUND_NOTFOUND = 'ResourceNotFound.NotFound'
|
184
259
|
|
260
|
+
# ResourceNotFound.TopicNotExist
|
261
|
+
RESOURCENOTFOUND_TOPICNOTEXIST = 'ResourceNotFound.TopicNotExist'
|
262
|
+
|
185
263
|
# 资源不可用。
|
186
264
|
RESOURCEUNAVAILABLE = 'ResourceUnavailable'
|
187
265
|
|