tencentcloud-sdk-python 3.0.1410__py2.py3-none-any.whl → 3.0.1412__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.
Files changed (51) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ams/v20201229/models.py +16 -189
  3. tencentcloud/apm/v20210622/apm_client.py +23 -0
  4. tencentcloud/apm/v20210622/errorcodes.py +6 -0
  5. tencentcloud/apm/v20210622/models.py +199 -0
  6. tencentcloud/cdb/v20170320/cdb_client.py +2 -2
  7. tencentcloud/cdb/v20170320/models.py +22 -14
  8. tencentcloud/ctem/__init__.py +0 -0
  9. tencentcloud/ctem/v20231128/__init__.py +0 -0
  10. tencentcloud/ctem/v20231128/ctem_client.py +601 -0
  11. tencentcloud/ctem/v20231128/errorcodes.py +75 -0
  12. tencentcloud/ctem/v20231128/models.py +10459 -0
  13. tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
  14. tencentcloud/dlc/v20210125/dlc_client.py +3 -1
  15. tencentcloud/dlc/v20210125/models.py +24 -7
  16. tencentcloud/dnspod/v20210323/errorcodes.py +1 -1
  17. tencentcloud/ecm/v20190719/ecm_client.py +21 -7
  18. tencentcloud/ess/v20201111/models.py +2 -2
  19. tencentcloud/essbasic/v20210526/models.py +2 -2
  20. tencentcloud/hunyuan/v20230901/models.py +17 -2
  21. tencentcloud/ims/v20201229/models.py +2 -30
  22. tencentcloud/iotexplorer/v20190423/models.py +4 -4
  23. tencentcloud/iotvideo/v20201215/models.py +2 -2
  24. tencentcloud/iotvideo/v20211125/models.py +2 -2
  25. tencentcloud/lke/v20231130/models.py +32 -2
  26. tencentcloud/mongodb/v20190725/errorcodes.py +9 -0
  27. tencentcloud/mongodb/v20190725/models.py +345 -0
  28. tencentcloud/mongodb/v20190725/mongodb_client.py +23 -0
  29. tencentcloud/mps/v20190612/models.py +217 -18
  30. tencentcloud/mqtt/v20240516/errorcodes.py +3 -0
  31. tencentcloud/mqtt/v20240516/models.py +255 -0
  32. tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
  33. tencentcloud/ocr/v20181119/models.py +20 -0
  34. tencentcloud/redis/v20180412/models.py +6 -6
  35. tencentcloud/teo/v20220901/errorcodes.py +15 -0
  36. tencentcloud/teo/v20220901/models.py +984 -102
  37. tencentcloud/teo/v20220901/teo_client.py +115 -0
  38. tencentcloud/tiw/v20190919/errorcodes.py +1 -1
  39. tencentcloud/tke/v20180525/models.py +19 -0
  40. tencentcloud/tms/v20201229/models.py +6 -60
  41. tencentcloud/trocket/v20230308/models.py +164 -130
  42. tencentcloud/trocket/v20230308/trocket_client.py +2 -2
  43. tencentcloud/vm/v20210922/models.py +45 -172
  44. tencentcloud/vpc/v20170312/errorcodes.py +21 -0
  45. tencentcloud/wedata/v20210820/models.py +239 -0
  46. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  47. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1412.dist-info}/METADATA +1 -1
  48. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1412.dist-info}/RECORD +51 -46
  49. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1412.dist-info}/LICENSE +0 -0
  50. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1412.dist-info}/WHEEL +0 -0
  51. {tencentcloud_sdk_python-3.0.1410.dist-info → tencentcloud_sdk_python-3.0.1412.dist-info}/top_level.txt +0 -0
@@ -62,6 +62,8 @@ class AudioResult(AbstractModel):
62
62
  :type SubTagCode: str
63
63
  :param _LabelResults: 该字段用于返回音频文件歌曲识别的详细审核结果
64
64
  :type LabelResults: list of LabelResult
65
+ :param _HitType: 审核命中类型
66
+ :type HitType: str
65
67
  """
66
68
  self._HitFlag = None
67
69
  self._Label = None
@@ -81,6 +83,7 @@ class AudioResult(AbstractModel):
81
83
  self._SubTag = None
82
84
  self._SubTagCode = None
83
85
  self._LabelResults = None
86
+ self._HitType = None
84
87
 
85
88
  @property
86
89
  def HitFlag(self):
@@ -281,6 +284,17 @@ class AudioResult(AbstractModel):
281
284
  def LabelResults(self, LabelResults):
282
285
  self._LabelResults = LabelResults
283
286
 
287
+ @property
288
+ def HitType(self):
289
+ """审核命中类型
290
+ :rtype: str
291
+ """
292
+ return self._HitType
293
+
294
+ @HitType.setter
295
+ def HitType(self, HitType):
296
+ self._HitType = HitType
297
+
284
298
 
285
299
  def _deserialize(self, params):
286
300
  self._HitFlag = params.get("HitFlag")
@@ -336,6 +350,7 @@ class AudioResult(AbstractModel):
336
350
  obj = LabelResult()
337
351
  obj._deserialize(item)
338
352
  self._LabelResults.append(obj)
353
+ self._HitType = params.get("HitType")
339
354
  memeber_set = set(params.keys())
340
355
  for name, value in vars(self).items():
341
356
  property_name = name[1:]
@@ -354,19 +369,14 @@ class AudioResultDetailLanguageResult(AbstractModel):
354
369
  def __init__(self):
355
370
  r"""
356
371
  :param _Label: 语种
357
- 注意:此字段可能返回 null,表示取不到有效值。
358
372
  :type Label: str
359
373
  :param _Score: 得分
360
- 注意:此字段可能返回 null,表示取不到有效值。
361
374
  :type Score: int
362
375
  :param _StartTime: 开始时间
363
- 注意:此字段可能返回 null,表示取不到有效值。
364
376
  :type StartTime: float
365
377
  :param _EndTime: 结束时间
366
- 注意:此字段可能返回 null,表示取不到有效值。
367
378
  :type EndTime: float
368
379
  :param _SubLabelCode: 子标签码
369
- 注意:此字段可能返回 null,表示取不到有效值。
370
380
  :type SubLabelCode: str
371
381
  """
372
382
  self._Label = None
@@ -378,7 +388,6 @@ class AudioResultDetailLanguageResult(AbstractModel):
378
388
  @property
379
389
  def Label(self):
380
390
  """语种
381
- 注意:此字段可能返回 null,表示取不到有效值。
382
391
  :rtype: str
383
392
  """
384
393
  return self._Label
@@ -390,7 +399,6 @@ class AudioResultDetailLanguageResult(AbstractModel):
390
399
  @property
391
400
  def Score(self):
392
401
  """得分
393
- 注意:此字段可能返回 null,表示取不到有效值。
394
402
  :rtype: int
395
403
  """
396
404
  return self._Score
@@ -402,7 +410,6 @@ class AudioResultDetailLanguageResult(AbstractModel):
402
410
  @property
403
411
  def StartTime(self):
404
412
  """开始时间
405
- 注意:此字段可能返回 null,表示取不到有效值。
406
413
  :rtype: float
407
414
  """
408
415
  return self._StartTime
@@ -414,7 +421,6 @@ class AudioResultDetailLanguageResult(AbstractModel):
414
421
  @property
415
422
  def EndTime(self):
416
423
  """结束时间
417
- 注意:此字段可能返回 null,表示取不到有效值。
418
424
  :rtype: float
419
425
  """
420
426
  return self._EndTime
@@ -426,7 +432,6 @@ class AudioResultDetailLanguageResult(AbstractModel):
426
432
  @property
427
433
  def SubLabelCode(self):
428
434
  """子标签码
429
- 注意:此字段可能返回 null,表示取不到有效值。
430
435
  :rtype: str
431
436
  """
432
437
  return self._SubLabelCode
@@ -460,7 +465,6 @@ class AudioResultDetailMoanResult(AbstractModel):
460
465
  def __init__(self):
461
466
  r"""
462
467
  :param _Label: 该字段用于返回检测结果需要检测的内容类型,此处固定为**Moan**(呻吟)以调用呻吟检测功能。
463
- 注意:此字段可能返回 null,表示取不到有效值。
464
468
  :type Label: str
465
469
  :param _Score: 该字段用于返回呻吟检测的置信度,取值范围:0(**置信度最低**)-100(**置信度最高**),越高代表音频越有可能属于呻吟内容。
466
470
  :type Score: int
@@ -486,7 +490,6 @@ class AudioResultDetailMoanResult(AbstractModel):
486
490
  @property
487
491
  def Label(self):
488
492
  """该字段用于返回检测结果需要检测的内容类型,此处固定为**Moan**(呻吟)以调用呻吟检测功能。
489
- 注意:此字段可能返回 null,表示取不到有效值。
490
493
  :rtype: str
491
494
  """
492
495
  return self._Label
@@ -1087,7 +1090,6 @@ class CreateVideoModerationTaskResponse(AbstractModel):
1087
1090
  def __init__(self):
1088
1091
  r"""
1089
1092
  :param _Results: 任务创建结果
1090
- 注意:此字段可能返回 null,表示取不到有效值。
1091
1093
  :type Results: list of TaskResult
1092
1094
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1093
1095
  :type RequestId: str
@@ -1098,7 +1100,6 @@ class CreateVideoModerationTaskResponse(AbstractModel):
1098
1100
  @property
1099
1101
  def Results(self):
1100
1102
  """任务创建结果
1101
- 注意:此字段可能返回 null,表示取不到有效值。
1102
1103
  :rtype: list of TaskResult
1103
1104
  """
1104
1105
  return self._Results
@@ -1188,50 +1189,35 @@ class DescribeTaskDetailResponse(AbstractModel):
1188
1189
  def __init__(self):
1189
1190
  r"""
1190
1191
  :param _TaskId: 该字段用于返回创建视频审核任务后返回的任务ID(在Results参数中),用于标识需要查询任务详情的审核任务。
1191
- 注意:此字段可能返回 null,表示取不到有效值。
1192
1192
  :type TaskId: str
1193
1193
  :param _DataId: 该字段用于返回调用视频审核接口时传入的数据ID参数,方便数据的辨别和管理。
1194
- 注意:此字段可能返回 null,表示取不到有效值。
1195
1194
  :type DataId: str
1196
1195
  :param _BizType: 该字段用于返回调用视频审核接口时传入的BizType参数,方便数据的辨别和管理。
1197
- 注意:此字段可能返回 null,表示取不到有效值。
1198
1196
  :type BizType: str
1199
1197
  :param _Name: 该字段用于返回调用视频审核接口时传入的TaskInput参数中的任务名称,方便任务的识别与管理。
1200
- 注意:此字段可能返回 null,表示取不到有效值。
1201
1198
  :type Name: str
1202
1199
  :param _Status: 该字段用于返回所查询内容的任务状态。
1203
1200
  <br>取值:**FINISH**(任务已完成)、**PENDING** (任务等待中)、**RUNNING** (任务进行中)、**ERROR** (任务出错)、**CANCELLED** (任务已取消)。
1204
- 注意:此字段可能返回 null,表示取不到有效值。
1205
1201
  :type Status: str
1206
1202
  :param _Type: 该字段用于返回调用视频审核接口时输入的视频审核类型,取值为:**VIDEO**(点播视频)和**LIVE_VIDEO**(直播视频),默认值为VIDEO。
1207
- 注意:此字段可能返回 null,表示取不到有效值。
1208
1203
  :type Type: str
1209
1204
  :param _Suggestion: 该字段用于返回基于恶意标签的后续操作建议。当您获取到判定结果后,返回值表示系统推荐的后续操作;建议您按照业务所需,对不同违规类型与建议值进行处理。<br>返回值:**Block**:建议屏蔽,**Review** :建议人工复审,**Pass**:建议通过
1210
- 注意:此字段可能返回 null,表示取不到有效值。
1211
1205
  :type Suggestion: str
1212
1206
  :param _Labels: 该字段用于返回检测结果所对应的恶意标签。<br>返回值:**Porn**:色情,**Abuse**:谩骂,**Ad**:广告,**Custom**:自定义违规;以及其他令人反感、不安全或不适宜的内容类型。
1213
- 注意:此字段可能返回 null,表示取不到有效值。
1214
1207
  :type Labels: list of TaskLabel
1215
1208
  :param _MediaInfo: 该字段用于返回输入媒体文件的详细信息,包括编解码格式、分片时长等信息。详细内容敬请参考MediaInfo数据结构的描述。
1216
- 注意:此字段可能返回 null,表示取不到有效值。
1217
1209
  :type MediaInfo: :class:`tencentcloud.vm.v20210922.models.MediaInfo`
1218
1210
  :param _InputInfo: 该字段用于返回审核服务的媒体内容信息,主要包括传入文件类型和访问地址。
1219
- 注意:此字段可能返回 null,表示取不到有效值。
1220
1211
  :type InputInfo: :class:`tencentcloud.vm.v20210922.models.InputInfo`
1221
1212
  :param _CreatedAt: 该字段用于返回被查询任务创建的时间,格式采用 ISO 8601标准。
1222
- 注意:此字段可能返回 null,表示取不到有效值。
1223
1213
  :type CreatedAt: str
1224
1214
  :param _UpdatedAt: 该字段用于返回被查询任务最后更新时间,格式采用 ISO 8601标准。
1225
- 注意:此字段可能返回 null,表示取不到有效值。
1226
1215
  :type UpdatedAt: str
1227
1216
  :param _TryInSeconds: 在秒后重试
1228
- 注意:此字段可能返回 null,表示取不到有效值。
1229
1217
  :type TryInSeconds: int
1230
1218
  :param _ImageSegments: 该字段用于返回视频中截帧审核的结果,详细返回内容敬请参考ImageSegments数据结构的描述。
1231
- 注意:此字段可能返回 null,表示取不到有效值。
1232
1219
  :type ImageSegments: list of ImageSegments
1233
1220
  :param _AudioSegments: 该字段用于返回视频中音频审核的结果,详细返回内容敬请参考AudioSegments数据结构的描述。
1234
- 注意:此字段可能返回 null,表示取不到有效值。
1235
1221
  :type AudioSegments: list of AudioSegments
1236
1222
  :param _ErrorType: 当任务状态为Error时,返回对应错误的类型,取值:
1237
1223
  **DECODE_ERROR**: 解码失败。(输入资源中可能包含无法解码的视频)
@@ -1241,22 +1227,16 @@ class DescribeTaskDetailResponse(AbstractModel):
1241
1227
  **MODERATION_ERROR**:审核失败。
1242
1228
  **URL_NOT_SUPPORTED**:源文件太大或没有图片音频帧
1243
1229
  任务状态非Error时默认返回为空。
1244
- 注意:此字段可能返回 null,表示取不到有效值。
1245
1230
  :type ErrorType: str
1246
1231
  :param _ErrorDescription: 当任务状态为Error时,该字段用于返回对应错误的详细描述,任务状态非Error时默认返回为空。
1247
- 注意:此字段可能返回 null,表示取不到有效值。
1248
1232
  :type ErrorDescription: str
1249
1233
  :param _Label: 该字段用于返回检测结果所对应的标签。如果未命中恶意,返回Normal,如果命中恶意,则返回Labels中优先级最高的标签
1250
- 注意:此字段可能返回 null,表示取不到有效值。
1251
1234
  :type Label: str
1252
1235
  :param _AudioText: 该字段用于返回音频文件识别出的对应文本内容,最大支持**前1000个字符**。
1253
- 注意:此字段可能返回 null,表示取不到有效值。
1254
1236
  :type AudioText: str
1255
1237
  :param _Asrs: 该字段用于返回音频文件识别出的对应文本内容。
1256
- 注意:此字段可能返回 null,表示取不到有效值。
1257
1238
  :type Asrs: list of RcbAsr
1258
1239
  :param _SegmentCosUrlList: 该字段用于返回检测结果明细数据相关的cos url
1259
- 注意:此字段可能返回 null,表示取不到有效值。
1260
1240
  :type SegmentCosUrlList: :class:`tencentcloud.vm.v20210922.models.SegmentCosUrlList`
1261
1241
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1262
1242
  :type RequestId: str
@@ -1287,7 +1267,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1287
1267
  @property
1288
1268
  def TaskId(self):
1289
1269
  """该字段用于返回创建视频审核任务后返回的任务ID(在Results参数中),用于标识需要查询任务详情的审核任务。
1290
- 注意:此字段可能返回 null,表示取不到有效值。
1291
1270
  :rtype: str
1292
1271
  """
1293
1272
  return self._TaskId
@@ -1299,7 +1278,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1299
1278
  @property
1300
1279
  def DataId(self):
1301
1280
  """该字段用于返回调用视频审核接口时传入的数据ID参数,方便数据的辨别和管理。
1302
- 注意:此字段可能返回 null,表示取不到有效值。
1303
1281
  :rtype: str
1304
1282
  """
1305
1283
  return self._DataId
@@ -1311,7 +1289,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1311
1289
  @property
1312
1290
  def BizType(self):
1313
1291
  """该字段用于返回调用视频审核接口时传入的BizType参数,方便数据的辨别和管理。
1314
- 注意:此字段可能返回 null,表示取不到有效值。
1315
1292
  :rtype: str
1316
1293
  """
1317
1294
  return self._BizType
@@ -1323,7 +1300,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1323
1300
  @property
1324
1301
  def Name(self):
1325
1302
  """该字段用于返回调用视频审核接口时传入的TaskInput参数中的任务名称,方便任务的识别与管理。
1326
- 注意:此字段可能返回 null,表示取不到有效值。
1327
1303
  :rtype: str
1328
1304
  """
1329
1305
  return self._Name
@@ -1336,7 +1312,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1336
1312
  def Status(self):
1337
1313
  """该字段用于返回所查询内容的任务状态。
1338
1314
  <br>取值:**FINISH**(任务已完成)、**PENDING** (任务等待中)、**RUNNING** (任务进行中)、**ERROR** (任务出错)、**CANCELLED** (任务已取消)。
1339
- 注意:此字段可能返回 null,表示取不到有效值。
1340
1315
  :rtype: str
1341
1316
  """
1342
1317
  return self._Status
@@ -1348,7 +1323,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1348
1323
  @property
1349
1324
  def Type(self):
1350
1325
  """该字段用于返回调用视频审核接口时输入的视频审核类型,取值为:**VIDEO**(点播视频)和**LIVE_VIDEO**(直播视频),默认值为VIDEO。
1351
- 注意:此字段可能返回 null,表示取不到有效值。
1352
1326
  :rtype: str
1353
1327
  """
1354
1328
  return self._Type
@@ -1360,7 +1334,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1360
1334
  @property
1361
1335
  def Suggestion(self):
1362
1336
  """该字段用于返回基于恶意标签的后续操作建议。当您获取到判定结果后,返回值表示系统推荐的后续操作;建议您按照业务所需,对不同违规类型与建议值进行处理。<br>返回值:**Block**:建议屏蔽,**Review** :建议人工复审,**Pass**:建议通过
1363
- 注意:此字段可能返回 null,表示取不到有效值。
1364
1337
  :rtype: str
1365
1338
  """
1366
1339
  return self._Suggestion
@@ -1372,7 +1345,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1372
1345
  @property
1373
1346
  def Labels(self):
1374
1347
  """该字段用于返回检测结果所对应的恶意标签。<br>返回值:**Porn**:色情,**Abuse**:谩骂,**Ad**:广告,**Custom**:自定义违规;以及其他令人反感、不安全或不适宜的内容类型。
1375
- 注意:此字段可能返回 null,表示取不到有效值。
1376
1348
  :rtype: list of TaskLabel
1377
1349
  """
1378
1350
  return self._Labels
@@ -1384,7 +1356,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1384
1356
  @property
1385
1357
  def MediaInfo(self):
1386
1358
  """该字段用于返回输入媒体文件的详细信息,包括编解码格式、分片时长等信息。详细内容敬请参考MediaInfo数据结构的描述。
1387
- 注意:此字段可能返回 null,表示取不到有效值。
1388
1359
  :rtype: :class:`tencentcloud.vm.v20210922.models.MediaInfo`
1389
1360
  """
1390
1361
  return self._MediaInfo
@@ -1396,7 +1367,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1396
1367
  @property
1397
1368
  def InputInfo(self):
1398
1369
  """该字段用于返回审核服务的媒体内容信息,主要包括传入文件类型和访问地址。
1399
- 注意:此字段可能返回 null,表示取不到有效值。
1400
1370
  :rtype: :class:`tencentcloud.vm.v20210922.models.InputInfo`
1401
1371
  """
1402
1372
  return self._InputInfo
@@ -1408,7 +1378,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1408
1378
  @property
1409
1379
  def CreatedAt(self):
1410
1380
  """该字段用于返回被查询任务创建的时间,格式采用 ISO 8601标准。
1411
- 注意:此字段可能返回 null,表示取不到有效值。
1412
1381
  :rtype: str
1413
1382
  """
1414
1383
  return self._CreatedAt
@@ -1420,7 +1389,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1420
1389
  @property
1421
1390
  def UpdatedAt(self):
1422
1391
  """该字段用于返回被查询任务最后更新时间,格式采用 ISO 8601标准。
1423
- 注意:此字段可能返回 null,表示取不到有效值。
1424
1392
  :rtype: str
1425
1393
  """
1426
1394
  return self._UpdatedAt
@@ -1432,7 +1400,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1432
1400
  @property
1433
1401
  def TryInSeconds(self):
1434
1402
  """在秒后重试
1435
- 注意:此字段可能返回 null,表示取不到有效值。
1436
1403
  :rtype: int
1437
1404
  """
1438
1405
  return self._TryInSeconds
@@ -1444,7 +1411,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1444
1411
  @property
1445
1412
  def ImageSegments(self):
1446
1413
  """该字段用于返回视频中截帧审核的结果,详细返回内容敬请参考ImageSegments数据结构的描述。
1447
- 注意:此字段可能返回 null,表示取不到有效值。
1448
1414
  :rtype: list of ImageSegments
1449
1415
  """
1450
1416
  return self._ImageSegments
@@ -1456,7 +1422,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1456
1422
  @property
1457
1423
  def AudioSegments(self):
1458
1424
  """该字段用于返回视频中音频审核的结果,详细返回内容敬请参考AudioSegments数据结构的描述。
1459
- 注意:此字段可能返回 null,表示取不到有效值。
1460
1425
  :rtype: list of AudioSegments
1461
1426
  """
1462
1427
  return self._AudioSegments
@@ -1475,7 +1440,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1475
1440
  **MODERATION_ERROR**:审核失败。
1476
1441
  **URL_NOT_SUPPORTED**:源文件太大或没有图片音频帧
1477
1442
  任务状态非Error时默认返回为空。
1478
- 注意:此字段可能返回 null,表示取不到有效值。
1479
1443
  :rtype: str
1480
1444
  """
1481
1445
  return self._ErrorType
@@ -1487,7 +1451,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1487
1451
  @property
1488
1452
  def ErrorDescription(self):
1489
1453
  """当任务状态为Error时,该字段用于返回对应错误的详细描述,任务状态非Error时默认返回为空。
1490
- 注意:此字段可能返回 null,表示取不到有效值。
1491
1454
  :rtype: str
1492
1455
  """
1493
1456
  return self._ErrorDescription
@@ -1499,7 +1462,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1499
1462
  @property
1500
1463
  def Label(self):
1501
1464
  """该字段用于返回检测结果所对应的标签。如果未命中恶意,返回Normal,如果命中恶意,则返回Labels中优先级最高的标签
1502
- 注意:此字段可能返回 null,表示取不到有效值。
1503
1465
  :rtype: str
1504
1466
  """
1505
1467
  return self._Label
@@ -1511,7 +1473,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1511
1473
  @property
1512
1474
  def AudioText(self):
1513
1475
  """该字段用于返回音频文件识别出的对应文本内容,最大支持**前1000个字符**。
1514
- 注意:此字段可能返回 null,表示取不到有效值。
1515
1476
  :rtype: str
1516
1477
  """
1517
1478
  return self._AudioText
@@ -1523,7 +1484,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1523
1484
  @property
1524
1485
  def Asrs(self):
1525
1486
  """该字段用于返回音频文件识别出的对应文本内容。
1526
- 注意:此字段可能返回 null,表示取不到有效值。
1527
1487
  :rtype: list of RcbAsr
1528
1488
  """
1529
1489
  return self._Asrs
@@ -1535,7 +1495,6 @@ class DescribeTaskDetailResponse(AbstractModel):
1535
1495
  @property
1536
1496
  def SegmentCosUrlList(self):
1537
1497
  """该字段用于返回检测结果明细数据相关的cos url
1538
- 注意:此字段可能返回 null,表示取不到有效值。
1539
1498
  :rtype: :class:`tencentcloud.vm.v20210922.models.SegmentCosUrlList`
1540
1499
  """
1541
1500
  return self._SegmentCosUrlList
@@ -1713,13 +1672,10 @@ class DescribeTasksResponse(AbstractModel):
1713
1672
  def __init__(self):
1714
1673
  r"""
1715
1674
  :param _Total: 该字段用于返回当前查询的任务总量,格式为int字符串。
1716
- 注意:此字段可能返回 null,表示取不到有效值。
1717
1675
  :type Total: str
1718
1676
  :param _Data: 该字段用于返回当前页的任务详细数据,具体输出内容请参见TaskData数据结构的详细描述。
1719
- 注意:此字段可能返回 null,表示取不到有效值。
1720
1677
  :type Data: list of TaskData
1721
1678
  :param _PageToken: 该字段用于返回翻页时使用的Token信息,由系统自动生成,并在翻页时向下一个生成的页面传递此参数,以方便快速翻页功能的实现。当到最后一页时,该字段为空。
1722
- 注意:此字段可能返回 null,表示取不到有效值。
1723
1679
  :type PageToken: str
1724
1680
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1725
1681
  :type RequestId: str
@@ -1732,7 +1688,6 @@ class DescribeTasksResponse(AbstractModel):
1732
1688
  @property
1733
1689
  def Total(self):
1734
1690
  """该字段用于返回当前查询的任务总量,格式为int字符串。
1735
- 注意:此字段可能返回 null,表示取不到有效值。
1736
1691
  :rtype: str
1737
1692
  """
1738
1693
  return self._Total
@@ -1744,7 +1699,6 @@ class DescribeTasksResponse(AbstractModel):
1744
1699
  @property
1745
1700
  def Data(self):
1746
1701
  """该字段用于返回当前页的任务详细数据,具体输出内容请参见TaskData数据结构的详细描述。
1747
- 注意:此字段可能返回 null,表示取不到有效值。
1748
1702
  :rtype: list of TaskData
1749
1703
  """
1750
1704
  return self._Data
@@ -1756,7 +1710,6 @@ class DescribeTasksResponse(AbstractModel):
1756
1710
  @property
1757
1711
  def PageToken(self):
1758
1712
  """该字段用于返回翻页时使用的Token信息,由系统自动生成,并在翻页时向下一个生成的页面传递此参数,以方便快速翻页功能的实现。当到最后一页时,该字段为空。
1759
- 注意:此字段可能返回 null,表示取不到有效值。
1760
1713
  :rtype: str
1761
1714
  """
1762
1715
  return self._PageToken
@@ -1826,6 +1779,8 @@ Block 确认违规
1826
1779
  :type SubLabel: str
1827
1780
  :param _RecognitionResults: 场景结果
1828
1781
  :type RecognitionResults: list of RecognitionResult
1782
+ :param _HitType: 审核命中类型
1783
+ :type HitType: str
1829
1784
  """
1830
1785
  self._HitFlag = None
1831
1786
  self._Label = None
@@ -1836,6 +1791,7 @@ Block 确认违规
1836
1791
  self._Extra = None
1837
1792
  self._SubLabel = None
1838
1793
  self._RecognitionResults = None
1794
+ self._HitType = None
1839
1795
 
1840
1796
  @property
1841
1797
  def HitFlag(self):
@@ -1948,6 +1904,17 @@ Block 确认违规
1948
1904
  def RecognitionResults(self, RecognitionResults):
1949
1905
  self._RecognitionResults = RecognitionResults
1950
1906
 
1907
+ @property
1908
+ def HitType(self):
1909
+ """审核命中类型
1910
+ :rtype: str
1911
+ """
1912
+ return self._HitType
1913
+
1914
+ @HitType.setter
1915
+ def HitType(self, HitType):
1916
+ self._HitType = HitType
1917
+
1951
1918
 
1952
1919
  def _deserialize(self, params):
1953
1920
  self._HitFlag = params.get("HitFlag")
@@ -1969,6 +1936,7 @@ Block 确认违规
1969
1936
  obj = RecognitionResult()
1970
1937
  obj._deserialize(item)
1971
1938
  self._RecognitionResults.append(obj)
1939
+ self._HitType = params.get("HitType")
1972
1940
  memeber_set = set(params.keys())
1973
1941
  for name, value in vars(self).items():
1974
1942
  property_name = name[1:]
@@ -1994,37 +1962,30 @@ Illegal 违法
1994
1962
  Abuse 谩骂
1995
1963
  Terror 暴恐
1996
1964
  Ad 广告
1997
- 注意:此字段可能返回 null,表示取不到有效值。
1998
1965
  :type Scene: str
1999
1966
  :param _HitFlag: 是否命中
2000
1967
  0 未命中
2001
1968
  1 命中
2002
- 注意:此字段可能返回 null,表示取不到有效值。
2003
1969
  :type HitFlag: int
2004
1970
  :param _Suggestion: 审核建议,可选值:
2005
1971
  Pass 通过,
2006
1972
  Review 建议人审,
2007
1973
  Block 确认违规
2008
- 注意:此字段可能返回 null,表示取不到有效值。
2009
1974
  :type Suggestion: str
2010
1975
  :param _Label: 标签
2011
- 注意:此字段可能返回 null,表示取不到有效值。
2012
1976
  :type Label: str
2013
1977
  :param _SubLabel: 子标签
2014
- 注意:此字段可能返回 null,表示取不到有效值。
2015
1978
  :type SubLabel: str
2016
1979
  :param _Score: 分数
2017
- 注意:此字段可能返回 null,表示取不到有效值。
2018
1980
  :type Score: int
2019
1981
  :param _Names: 人物名称列表,如未识别,则为null
2020
- 注意:此字段可能返回 null,表示取不到有效值。
2021
1982
  :type Names: list of str
2022
1983
  :param _Text: 图片OCR文本
2023
- 注意:此字段可能返回 null,表示取不到有效值。
2024
1984
  :type Text: str
2025
1985
  :param _Details: 其他详情
2026
- 注意:此字段可能返回 null,表示取不到有效值。
2027
1986
  :type Details: list of ImageResultsResultDetail
1987
+ :param _HitType: 审核命中类型
1988
+ :type HitType: str
2028
1989
  """
2029
1990
  self._Scene = None
2030
1991
  self._HitFlag = None
@@ -2035,6 +1996,7 @@ Block 确认违规
2035
1996
  self._Names = None
2036
1997
  self._Text = None
2037
1998
  self._Details = None
1999
+ self._HitType = None
2038
2000
 
2039
2001
  @property
2040
2002
  def Scene(self):
@@ -2046,7 +2008,6 @@ Illegal 违法
2046
2008
  Abuse 谩骂
2047
2009
  Terror 暴恐
2048
2010
  Ad 广告
2049
- 注意:此字段可能返回 null,表示取不到有效值。
2050
2011
  :rtype: str
2051
2012
  """
2052
2013
  return self._Scene
@@ -2060,7 +2021,6 @@ Ad 广告
2060
2021
  """是否命中
2061
2022
  0 未命中
2062
2023
  1 命中
2063
- 注意:此字段可能返回 null,表示取不到有效值。
2064
2024
  :rtype: int
2065
2025
  """
2066
2026
  return self._HitFlag
@@ -2075,7 +2035,6 @@ Ad 广告
2075
2035
  Pass 通过,
2076
2036
  Review 建议人审,
2077
2037
  Block 确认违规
2078
- 注意:此字段可能返回 null,表示取不到有效值。
2079
2038
  :rtype: str
2080
2039
  """
2081
2040
  return self._Suggestion
@@ -2087,7 +2046,6 @@ Block 确认违规
2087
2046
  @property
2088
2047
  def Label(self):
2089
2048
  """标签
2090
- 注意:此字段可能返回 null,表示取不到有效值。
2091
2049
  :rtype: str
2092
2050
  """
2093
2051
  return self._Label
@@ -2099,7 +2057,6 @@ Block 确认违规
2099
2057
  @property
2100
2058
  def SubLabel(self):
2101
2059
  """子标签
2102
- 注意:此字段可能返回 null,表示取不到有效值。
2103
2060
  :rtype: str
2104
2061
  """
2105
2062
  return self._SubLabel
@@ -2111,7 +2068,6 @@ Block 确认违规
2111
2068
  @property
2112
2069
  def Score(self):
2113
2070
  """分数
2114
- 注意:此字段可能返回 null,表示取不到有效值。
2115
2071
  :rtype: int
2116
2072
  """
2117
2073
  return self._Score
@@ -2123,7 +2079,6 @@ Block 确认违规
2123
2079
  @property
2124
2080
  def Names(self):
2125
2081
  """人物名称列表,如未识别,则为null
2126
- 注意:此字段可能返回 null,表示取不到有效值。
2127
2082
  :rtype: list of str
2128
2083
  """
2129
2084
  return self._Names
@@ -2135,7 +2090,6 @@ Block 确认违规
2135
2090
  @property
2136
2091
  def Text(self):
2137
2092
  """图片OCR文本
2138
- 注意:此字段可能返回 null,表示取不到有效值。
2139
2093
  :rtype: str
2140
2094
  """
2141
2095
  return self._Text
@@ -2147,7 +2101,6 @@ Block 确认违规
2147
2101
  @property
2148
2102
  def Details(self):
2149
2103
  """其他详情
2150
- 注意:此字段可能返回 null,表示取不到有效值。
2151
2104
  :rtype: list of ImageResultsResultDetail
2152
2105
  """
2153
2106
  return self._Details
@@ -2156,6 +2109,17 @@ Block 确认违规
2156
2109
  def Details(self, Details):
2157
2110
  self._Details = Details
2158
2111
 
2112
+ @property
2113
+ def HitType(self):
2114
+ """审核命中类型
2115
+ :rtype: str
2116
+ """
2117
+ return self._HitType
2118
+
2119
+ @HitType.setter
2120
+ def HitType(self, HitType):
2121
+ self._HitType = HitType
2122
+
2159
2123
 
2160
2124
  def _deserialize(self, params):
2161
2125
  self._Scene = params.get("Scene")
@@ -2172,6 +2136,7 @@ Block 确认违规
2172
2136
  obj = ImageResultsResultDetail()
2173
2137
  obj._deserialize(item)
2174
2138
  self._Details.append(obj)
2139
+ self._HitType = params.get("HitType")
2175
2140
  memeber_set = set(params.keys())
2176
2141
  for name, value in vars(self).items():
2177
2142
  property_name = name[1:]
@@ -2190,34 +2155,24 @@ class ImageResultsResultDetail(AbstractModel):
2190
2155
  def __init__(self):
2191
2156
  r"""
2192
2157
  :param _Name: 任务名称
2193
- 注意:此字段可能返回 null,表示取不到有效值。
2194
2158
  :type Name: str
2195
2159
  :param _Text: OCR识别文本
2196
- 注意:此字段可能返回 null,表示取不到有效值。
2197
2160
  :type Text: str
2198
2161
  :param _Location: 位置信息
2199
- 注意:此字段可能返回 null,表示取不到有效值。
2200
2162
  :type Location: :class:`tencentcloud.vm.v20210922.models.ImageResultsResultDetailLocation`
2201
2163
  :param _Label: 标签
2202
- 注意:此字段可能返回 null,表示取不到有效值。
2203
2164
  :type Label: str
2204
2165
  :param _LibId: 库ID
2205
- 注意:此字段可能返回 null,表示取不到有效值。
2206
2166
  :type LibId: str
2207
2167
  :param _LibName: 库名称
2208
- 注意:此字段可能返回 null,表示取不到有效值。
2209
2168
  :type LibName: str
2210
2169
  :param _Keywords: 命中的关键词
2211
- 注意:此字段可能返回 null,表示取不到有效值。
2212
2170
  :type Keywords: list of str
2213
2171
  :param _Suggestion: 建议
2214
- 注意:此字段可能返回 null,表示取不到有效值。
2215
2172
  :type Suggestion: str
2216
2173
  :param _Score: 得分
2217
- 注意:此字段可能返回 null,表示取不到有效值。
2218
2174
  :type Score: int
2219
2175
  :param _SubLabelCode: 子标签码
2220
- 注意:此字段可能返回 null,表示取不到有效值。
2221
2176
  :type SubLabelCode: str
2222
2177
  :param _SubLabel: 子标签
2223
2178
  :type SubLabel: str
@@ -2240,7 +2195,6 @@ class ImageResultsResultDetail(AbstractModel):
2240
2195
  @property
2241
2196
  def Name(self):
2242
2197
  """任务名称
2243
- 注意:此字段可能返回 null,表示取不到有效值。
2244
2198
  :rtype: str
2245
2199
  """
2246
2200
  return self._Name
@@ -2252,7 +2206,6 @@ class ImageResultsResultDetail(AbstractModel):
2252
2206
  @property
2253
2207
  def Text(self):
2254
2208
  """OCR识别文本
2255
- 注意:此字段可能返回 null,表示取不到有效值。
2256
2209
  :rtype: str
2257
2210
  """
2258
2211
  return self._Text
@@ -2264,7 +2217,6 @@ class ImageResultsResultDetail(AbstractModel):
2264
2217
  @property
2265
2218
  def Location(self):
2266
2219
  """位置信息
2267
- 注意:此字段可能返回 null,表示取不到有效值。
2268
2220
  :rtype: :class:`tencentcloud.vm.v20210922.models.ImageResultsResultDetailLocation`
2269
2221
  """
2270
2222
  return self._Location
@@ -2276,7 +2228,6 @@ class ImageResultsResultDetail(AbstractModel):
2276
2228
  @property
2277
2229
  def Label(self):
2278
2230
  """标签
2279
- 注意:此字段可能返回 null,表示取不到有效值。
2280
2231
  :rtype: str
2281
2232
  """
2282
2233
  return self._Label
@@ -2288,7 +2239,6 @@ class ImageResultsResultDetail(AbstractModel):
2288
2239
  @property
2289
2240
  def LibId(self):
2290
2241
  """库ID
2291
- 注意:此字段可能返回 null,表示取不到有效值。
2292
2242
  :rtype: str
2293
2243
  """
2294
2244
  return self._LibId
@@ -2300,7 +2250,6 @@ class ImageResultsResultDetail(AbstractModel):
2300
2250
  @property
2301
2251
  def LibName(self):
2302
2252
  """库名称
2303
- 注意:此字段可能返回 null,表示取不到有效值。
2304
2253
  :rtype: str
2305
2254
  """
2306
2255
  return self._LibName
@@ -2312,7 +2261,6 @@ class ImageResultsResultDetail(AbstractModel):
2312
2261
  @property
2313
2262
  def Keywords(self):
2314
2263
  """命中的关键词
2315
- 注意:此字段可能返回 null,表示取不到有效值。
2316
2264
  :rtype: list of str
2317
2265
  """
2318
2266
  return self._Keywords
@@ -2324,7 +2272,6 @@ class ImageResultsResultDetail(AbstractModel):
2324
2272
  @property
2325
2273
  def Suggestion(self):
2326
2274
  """建议
2327
- 注意:此字段可能返回 null,表示取不到有效值。
2328
2275
  :rtype: str
2329
2276
  """
2330
2277
  return self._Suggestion
@@ -2336,7 +2283,6 @@ class ImageResultsResultDetail(AbstractModel):
2336
2283
  @property
2337
2284
  def Score(self):
2338
2285
  """得分
2339
- 注意:此字段可能返回 null,表示取不到有效值。
2340
2286
  :rtype: int
2341
2287
  """
2342
2288
  return self._Score
@@ -2348,7 +2294,6 @@ class ImageResultsResultDetail(AbstractModel):
2348
2294
  @property
2349
2295
  def SubLabelCode(self):
2350
2296
  """子标签码
2351
- 注意:此字段可能返回 null,表示取不到有效值。
2352
2297
  :rtype: str
2353
2298
  """
2354
2299
  return self._SubLabelCode
@@ -2418,19 +2363,14 @@ class ImageResultsResultDetailLocation(AbstractModel):
2418
2363
  def __init__(self):
2419
2364
  r"""
2420
2365
  :param _X: x坐标
2421
- 注意:此字段可能返回 null,表示取不到有效值。
2422
2366
  :type X: float
2423
2367
  :param _Y: y坐标
2424
- 注意:此字段可能返回 null,表示取不到有效值。
2425
2368
  :type Y: float
2426
2369
  :param _Width: 宽度
2427
- 注意:此字段可能返回 null,表示取不到有效值。
2428
2370
  :type Width: int
2429
2371
  :param _Height: 高度
2430
- 注意:此字段可能返回 null,表示取不到有效值。
2431
2372
  :type Height: int
2432
2373
  :param _Rotate: 旋转角度
2433
- 注意:此字段可能返回 null,表示取不到有效值。
2434
2374
  :type Rotate: float
2435
2375
  """
2436
2376
  self._X = None
@@ -2442,7 +2382,6 @@ class ImageResultsResultDetailLocation(AbstractModel):
2442
2382
  @property
2443
2383
  def X(self):
2444
2384
  """x坐标
2445
- 注意:此字段可能返回 null,表示取不到有效值。
2446
2385
  :rtype: float
2447
2386
  """
2448
2387
  return self._X
@@ -2454,7 +2393,6 @@ class ImageResultsResultDetailLocation(AbstractModel):
2454
2393
  @property
2455
2394
  def Y(self):
2456
2395
  """y坐标
2457
- 注意:此字段可能返回 null,表示取不到有效值。
2458
2396
  :rtype: float
2459
2397
  """
2460
2398
  return self._Y
@@ -2466,7 +2404,6 @@ class ImageResultsResultDetailLocation(AbstractModel):
2466
2404
  @property
2467
2405
  def Width(self):
2468
2406
  """宽度
2469
- 注意:此字段可能返回 null,表示取不到有效值。
2470
2407
  :rtype: int
2471
2408
  """
2472
2409
  return self._Width
@@ -2478,7 +2415,6 @@ class ImageResultsResultDetailLocation(AbstractModel):
2478
2415
  @property
2479
2416
  def Height(self):
2480
2417
  """高度
2481
- 注意:此字段可能返回 null,表示取不到有效值。
2482
2418
  :rtype: int
2483
2419
  """
2484
2420
  return self._Height
@@ -2490,7 +2426,6 @@ class ImageResultsResultDetailLocation(AbstractModel):
2490
2426
  @property
2491
2427
  def Rotate(self):
2492
2428
  """旋转角度
2493
- 注意:此字段可能返回 null,表示取不到有效值。
2494
2429
  :rtype: float
2495
2430
  """
2496
2431
  return self._Rotate
@@ -2611,10 +2546,8 @@ class InputInfo(AbstractModel):
2611
2546
  def __init__(self):
2612
2547
  r"""
2613
2548
  :param _Type: 传入的类型可选:URL,COS
2614
- 注意:此字段可能返回 null,表示取不到有效值。
2615
2549
  :type Type: str
2616
2550
  :param _Url: Url地址
2617
- 注意:此字段可能返回 null,表示取不到有效值。
2618
2551
  :type Url: str
2619
2552
  :param _BucketInfo: 桶信息。当输入当时COS时,该字段不为空
2620
2553
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2627,7 +2560,6 @@ class InputInfo(AbstractModel):
2627
2560
  @property
2628
2561
  def Type(self):
2629
2562
  """传入的类型可选:URL,COS
2630
- 注意:此字段可能返回 null,表示取不到有效值。
2631
2563
  :rtype: str
2632
2564
  """
2633
2565
  return self._Type
@@ -2639,7 +2571,6 @@ class InputInfo(AbstractModel):
2639
2571
  @property
2640
2572
  def Url(self):
2641
2573
  """Url地址
2642
- 注意:此字段可能返回 null,表示取不到有效值。
2643
2574
  :rtype: str
2644
2575
  """
2645
2576
  return self._Url
@@ -2993,10 +2924,8 @@ class RcbAsr(AbstractModel):
2993
2924
  def __init__(self):
2994
2925
  r"""
2995
2926
  :param _Text: 该字段用于返回音频文件识别出的对应文本内容,最大支持**前1000个字符**。
2996
- 注意:此字段可能返回 null,表示取不到有效值。
2997
2927
  :type Text: str
2998
2928
  :param _CreatedAt: 该字段用于返回被查询任务创建的时间,格式采用 ISO 8601标准。
2999
- 注意:此字段可能返回 null,表示取不到有效值。
3000
2929
  :type CreatedAt: str
3001
2930
  """
3002
2931
  self._Text = None
@@ -3005,7 +2934,6 @@ class RcbAsr(AbstractModel):
3005
2934
  @property
3006
2935
  def Text(self):
3007
2936
  """该字段用于返回音频文件识别出的对应文本内容,最大支持**前1000个字符**。
3008
- 注意:此字段可能返回 null,表示取不到有效值。
3009
2937
  :rtype: str
3010
2938
  """
3011
2939
  return self._Text
@@ -3017,7 +2945,6 @@ class RcbAsr(AbstractModel):
3017
2945
  @property
3018
2946
  def CreatedAt(self):
3019
2947
  """该字段用于返回被查询任务创建的时间,格式采用 ISO 8601标准。
3020
- 注意:此字段可能返回 null,表示取不到有效值。
3021
2948
  :rtype: str
3022
2949
  """
3023
2950
  return self._CreatedAt
@@ -3048,10 +2975,8 @@ class RecognitionResult(AbstractModel):
3048
2975
  def __init__(self):
3049
2976
  r"""
3050
2977
  :param _Label: 可能的取值有:Teenager 、Gender
3051
- 注意:此字段可能返回 null,表示取不到有效值。
3052
2978
  :type Label: str
3053
2979
  :param _Tags: 识别标签列表
3054
- 注意:此字段可能返回 null,表示取不到有效值。
3055
2980
  :type Tags: list of Tag
3056
2981
  """
3057
2982
  self._Label = None
@@ -3060,7 +2985,6 @@ class RecognitionResult(AbstractModel):
3060
2985
  @property
3061
2986
  def Label(self):
3062
2987
  """可能的取值有:Teenager 、Gender
3063
- 注意:此字段可能返回 null,表示取不到有效值。
3064
2988
  :rtype: str
3065
2989
  """
3066
2990
  return self._Label
@@ -3072,7 +2996,6 @@ class RecognitionResult(AbstractModel):
3072
2996
  @property
3073
2997
  def Tags(self):
3074
2998
  """识别标签列表
3075
- 注意:此字段可能返回 null,表示取不到有效值。
3076
2999
  :rtype: list of Tag
3077
3000
  """
3078
3001
  return self._Tags
@@ -3108,19 +3031,14 @@ class SegmentCosUrlList(AbstractModel):
3108
3031
  def __init__(self):
3109
3032
  r"""
3110
3033
  :param _ImageAllUrl: 全量图片片段的cos url
3111
- 注意:此字段可能返回 null,表示取不到有效值。
3112
3034
  :type ImageAllUrl: str
3113
3035
  :param _AudioAllUrl: 全量音频片段的cos url
3114
- 注意:此字段可能返回 null,表示取不到有效值。
3115
3036
  :type AudioAllUrl: str
3116
3037
  :param _ImageBlockUrl: 违规图片片段的cos url
3117
- 注意:此字段可能返回 null,表示取不到有效值。
3118
3038
  :type ImageBlockUrl: str
3119
3039
  :param _AudioBlockUrl: 违规音频片段的cos url
3120
- 注意:此字段可能返回 null,表示取不到有效值。
3121
3040
  :type AudioBlockUrl: str
3122
3041
  :param _AsrUrl: 全量音频识别文本的cos url
3123
- 注意:此字段可能返回 null,表示取不到有效值。
3124
3042
  :type AsrUrl: str
3125
3043
  """
3126
3044
  self._ImageAllUrl = None
@@ -3132,7 +3050,6 @@ class SegmentCosUrlList(AbstractModel):
3132
3050
  @property
3133
3051
  def ImageAllUrl(self):
3134
3052
  """全量图片片段的cos url
3135
- 注意:此字段可能返回 null,表示取不到有效值。
3136
3053
  :rtype: str
3137
3054
  """
3138
3055
  return self._ImageAllUrl
@@ -3144,7 +3061,6 @@ class SegmentCosUrlList(AbstractModel):
3144
3061
  @property
3145
3062
  def AudioAllUrl(self):
3146
3063
  """全量音频片段的cos url
3147
- 注意:此字段可能返回 null,表示取不到有效值。
3148
3064
  :rtype: str
3149
3065
  """
3150
3066
  return self._AudioAllUrl
@@ -3156,7 +3072,6 @@ class SegmentCosUrlList(AbstractModel):
3156
3072
  @property
3157
3073
  def ImageBlockUrl(self):
3158
3074
  """违规图片片段的cos url
3159
- 注意:此字段可能返回 null,表示取不到有效值。
3160
3075
  :rtype: str
3161
3076
  """
3162
3077
  return self._ImageBlockUrl
@@ -3168,7 +3083,6 @@ class SegmentCosUrlList(AbstractModel):
3168
3083
  @property
3169
3084
  def AudioBlockUrl(self):
3170
3085
  """违规音频片段的cos url
3171
- 注意:此字段可能返回 null,表示取不到有效值。
3172
3086
  :rtype: str
3173
3087
  """
3174
3088
  return self._AudioBlockUrl
@@ -3180,7 +3094,6 @@ class SegmentCosUrlList(AbstractModel):
3180
3094
  @property
3181
3095
  def AsrUrl(self):
3182
3096
  """全量音频识别文本的cos url
3183
- 注意:此字段可能返回 null,表示取不到有效值。
3184
3097
  :rtype: str
3185
3098
  """
3186
3099
  return self._AsrUrl
@@ -3369,16 +3282,12 @@ class Tag(AbstractModel):
3369
3282
  :param _Name: 根据Label字段确定具体名称:
3370
3283
  当Label 为Teenager 时 Name可能取值有:Teenager
3371
3284
  当Label 为Gender 时 Name可能取值有:Male 、Female
3372
- 注意:此字段可能返回 null,表示取不到有效值。
3373
3285
  :type Name: str
3374
3286
  :param _Score: 置信分:0~100,数值越大表示置信度越高
3375
- 注意:此字段可能返回 null,表示取不到有效值。
3376
3287
  :type Score: int
3377
3288
  :param _StartTime: 识别开始偏移时间,单位:毫秒
3378
- 注意:此字段可能返回 null,表示取不到有效值。
3379
3289
  :type StartTime: float
3380
3290
  :param _EndTime: 识别结束偏移时间,单位:毫秒
3381
- 注意:此字段可能返回 null,表示取不到有效值。
3382
3291
  :type EndTime: float
3383
3292
  """
3384
3293
  self._Name = None
@@ -3391,7 +3300,6 @@ class Tag(AbstractModel):
3391
3300
  """根据Label字段确定具体名称:
3392
3301
  当Label 为Teenager 时 Name可能取值有:Teenager
3393
3302
  当Label 为Gender 时 Name可能取值有:Male 、Female
3394
- 注意:此字段可能返回 null,表示取不到有效值。
3395
3303
  :rtype: str
3396
3304
  """
3397
3305
  return self._Name
@@ -3403,7 +3311,6 @@ class Tag(AbstractModel):
3403
3311
  @property
3404
3312
  def Score(self):
3405
3313
  """置信分:0~100,数值越大表示置信度越高
3406
- 注意:此字段可能返回 null,表示取不到有效值。
3407
3314
  :rtype: int
3408
3315
  """
3409
3316
  return self._Score
@@ -3415,7 +3322,6 @@ class Tag(AbstractModel):
3415
3322
  @property
3416
3323
  def StartTime(self):
3417
3324
  """识别开始偏移时间,单位:毫秒
3418
- 注意:此字段可能返回 null,表示取不到有效值。
3419
3325
  :rtype: float
3420
3326
  """
3421
3327
  return self._StartTime
@@ -3427,7 +3333,6 @@ class Tag(AbstractModel):
3427
3333
  @property
3428
3334
  def EndTime(self):
3429
3335
  """识别结束偏移时间,单位:毫秒
3430
- 注意:此字段可能返回 null,表示取不到有效值。
3431
3336
  :rtype: float
3432
3337
  """
3433
3338
  return self._EndTime
@@ -3460,40 +3365,28 @@ class TaskData(AbstractModel):
3460
3365
  def __init__(self):
3461
3366
  r"""
3462
3367
  :param _TaskId: 任务ID
3463
- 注意:此字段可能返回 null,表示取不到有效值。
3464
3368
  :type TaskId: str
3465
3369
  :param _DataId: 输入的数据ID
3466
- 注意:此字段可能返回 null,表示取不到有效值。
3467
3370
  :type DataId: str
3468
3371
  :param _BizType: 业务类型
3469
- 注意:此字段可能返回 null,表示取不到有效值。
3470
3372
  :type BizType: str
3471
3373
  :param _Name: 任务名称
3472
- 注意:此字段可能返回 null,表示取不到有效值。
3473
3374
  :type Name: str
3474
3375
  :param _Status: 状态,可选:PENDING,RUNNING,ERROR,FINISH,CANCELLED
3475
- 注意:此字段可能返回 null,表示取不到有效值。
3476
3376
  :type Status: str
3477
3377
  :param _Type: 任务类型
3478
- 注意:此字段可能返回 null,表示取不到有效值。
3479
3378
  :type Type: str
3480
3379
  :param _Suggestion: 处理建议
3481
- 注意:此字段可能返回 null,表示取不到有效值。
3482
3380
  :type Suggestion: str
3483
3381
  :param _Labels: 标签
3484
- 注意:此字段可能返回 null,表示取不到有效值。
3485
3382
  :type Labels: list of TaskLabel
3486
3383
  :param _MediaInfo: 媒体信息
3487
- 注意:此字段可能返回 null,表示取不到有效值。
3488
3384
  :type MediaInfo: :class:`tencentcloud.vm.v20210922.models.MediaInfo`
3489
3385
  :param _InputInfo: 输入信息
3490
- 注意:此字段可能返回 null,表示取不到有效值。
3491
3386
  :type InputInfo: :class:`tencentcloud.vm.v20210922.models.InputInfo`
3492
3387
  :param _CreatedAt: 创建时间
3493
- 注意:此字段可能返回 null,表示取不到有效值。
3494
3388
  :type CreatedAt: str
3495
3389
  :param _UpdatedAt: 更新时间
3496
- 注意:此字段可能返回 null,表示取不到有效值。
3497
3390
  :type UpdatedAt: str
3498
3391
  """
3499
3392
  self._TaskId = None
@@ -3512,7 +3405,6 @@ class TaskData(AbstractModel):
3512
3405
  @property
3513
3406
  def TaskId(self):
3514
3407
  """任务ID
3515
- 注意:此字段可能返回 null,表示取不到有效值。
3516
3408
  :rtype: str
3517
3409
  """
3518
3410
  return self._TaskId
@@ -3524,7 +3416,6 @@ class TaskData(AbstractModel):
3524
3416
  @property
3525
3417
  def DataId(self):
3526
3418
  """输入的数据ID
3527
- 注意:此字段可能返回 null,表示取不到有效值。
3528
3419
  :rtype: str
3529
3420
  """
3530
3421
  return self._DataId
@@ -3536,7 +3427,6 @@ class TaskData(AbstractModel):
3536
3427
  @property
3537
3428
  def BizType(self):
3538
3429
  """业务类型
3539
- 注意:此字段可能返回 null,表示取不到有效值。
3540
3430
  :rtype: str
3541
3431
  """
3542
3432
  return self._BizType
@@ -3548,7 +3438,6 @@ class TaskData(AbstractModel):
3548
3438
  @property
3549
3439
  def Name(self):
3550
3440
  """任务名称
3551
- 注意:此字段可能返回 null,表示取不到有效值。
3552
3441
  :rtype: str
3553
3442
  """
3554
3443
  return self._Name
@@ -3560,7 +3449,6 @@ class TaskData(AbstractModel):
3560
3449
  @property
3561
3450
  def Status(self):
3562
3451
  """状态,可选:PENDING,RUNNING,ERROR,FINISH,CANCELLED
3563
- 注意:此字段可能返回 null,表示取不到有效值。
3564
3452
  :rtype: str
3565
3453
  """
3566
3454
  return self._Status
@@ -3572,7 +3460,6 @@ class TaskData(AbstractModel):
3572
3460
  @property
3573
3461
  def Type(self):
3574
3462
  """任务类型
3575
- 注意:此字段可能返回 null,表示取不到有效值。
3576
3463
  :rtype: str
3577
3464
  """
3578
3465
  return self._Type
@@ -3584,7 +3471,6 @@ class TaskData(AbstractModel):
3584
3471
  @property
3585
3472
  def Suggestion(self):
3586
3473
  """处理建议
3587
- 注意:此字段可能返回 null,表示取不到有效值。
3588
3474
  :rtype: str
3589
3475
  """
3590
3476
  return self._Suggestion
@@ -3596,7 +3482,6 @@ class TaskData(AbstractModel):
3596
3482
  @property
3597
3483
  def Labels(self):
3598
3484
  """标签
3599
- 注意:此字段可能返回 null,表示取不到有效值。
3600
3485
  :rtype: list of TaskLabel
3601
3486
  """
3602
3487
  return self._Labels
@@ -3608,7 +3493,6 @@ class TaskData(AbstractModel):
3608
3493
  @property
3609
3494
  def MediaInfo(self):
3610
3495
  """媒体信息
3611
- 注意:此字段可能返回 null,表示取不到有效值。
3612
3496
  :rtype: :class:`tencentcloud.vm.v20210922.models.MediaInfo`
3613
3497
  """
3614
3498
  return self._MediaInfo
@@ -3620,7 +3504,6 @@ class TaskData(AbstractModel):
3620
3504
  @property
3621
3505
  def InputInfo(self):
3622
3506
  """输入信息
3623
- 注意:此字段可能返回 null,表示取不到有效值。
3624
3507
  :rtype: :class:`tencentcloud.vm.v20210922.models.InputInfo`
3625
3508
  """
3626
3509
  return self._InputInfo
@@ -3632,7 +3515,6 @@ class TaskData(AbstractModel):
3632
3515
  @property
3633
3516
  def CreatedAt(self):
3634
3517
  """创建时间
3635
- 注意:此字段可能返回 null,表示取不到有效值。
3636
3518
  :rtype: str
3637
3519
  """
3638
3520
  return self._CreatedAt
@@ -3644,7 +3526,6 @@ class TaskData(AbstractModel):
3644
3526
  @property
3645
3527
  def UpdatedAt(self):
3646
3528
  """更新时间
3647
- 注意:此字段可能返回 null,表示取不到有效值。
3648
3529
  :rtype: str
3649
3530
  """
3650
3531
  return self._UpdatedAt
@@ -3940,16 +3821,12 @@ class TaskResult(AbstractModel):
3940
3821
  def __init__(self):
3941
3822
  r"""
3942
3823
  :param _DataId: 请求时传入的DataId
3943
- 注意:此字段可能返回 null,表示取不到有效值。
3944
3824
  :type DataId: str
3945
3825
  :param _TaskId: TaskId,任务ID
3946
- 注意:此字段可能返回 null,表示取不到有效值。
3947
3826
  :type TaskId: str
3948
3827
  :param _Code: 错误码。如果code为OK,则表示创建成功,其他则参考公共错误码
3949
- 注意:此字段可能返回 null,表示取不到有效值。
3950
3828
  :type Code: str
3951
3829
  :param _Message: 如果错误,该字段表示错误详情
3952
- 注意:此字段可能返回 null,表示取不到有效值。
3953
3830
  :type Message: str
3954
3831
  """
3955
3832
  self._DataId = None
@@ -3960,7 +3837,6 @@ class TaskResult(AbstractModel):
3960
3837
  @property
3961
3838
  def DataId(self):
3962
3839
  """请求时传入的DataId
3963
- 注意:此字段可能返回 null,表示取不到有效值。
3964
3840
  :rtype: str
3965
3841
  """
3966
3842
  return self._DataId
@@ -3972,7 +3848,6 @@ class TaskResult(AbstractModel):
3972
3848
  @property
3973
3849
  def TaskId(self):
3974
3850
  """TaskId,任务ID
3975
- 注意:此字段可能返回 null,表示取不到有效值。
3976
3851
  :rtype: str
3977
3852
  """
3978
3853
  return self._TaskId
@@ -3984,7 +3859,6 @@ class TaskResult(AbstractModel):
3984
3859
  @property
3985
3860
  def Code(self):
3986
3861
  """错误码。如果code为OK,则表示创建成功,其他则参考公共错误码
3987
- 注意:此字段可能返回 null,表示取不到有效值。
3988
3862
  :rtype: str
3989
3863
  """
3990
3864
  return self._Code
@@ -3996,7 +3870,6 @@ class TaskResult(AbstractModel):
3996
3870
  @property
3997
3871
  def Message(self):
3998
3872
  """如果错误,该字段表示错误详情
3999
- 注意:此字段可能返回 null,表示取不到有效值。
4000
3873
  :rtype: str
4001
3874
  """
4002
3875
  return self._Message