tencentcloud-sdk-python 3.0.1373__py2.py3-none-any.whl → 3.0.1375__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 (49) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/models.py +16 -0
  3. tencentcloud/apm/v20210622/models.py +60 -0
  4. tencentcloud/asr/v20190614/asr_client.py +1 -1
  5. tencentcloud/asr/v20190614/models.py +8 -0
  6. tencentcloud/bh/v20230418/models.py +4 -8
  7. tencentcloud/cbs/v20170312/models.py +27 -2
  8. tencentcloud/chc/v20230418/models.py +84 -2
  9. tencentcloud/ckafka/v20190819/models.py +0 -24
  10. tencentcloud/clb/v20180317/clb_client.py +31 -23
  11. tencentcloud/clb/v20180317/errorcodes.py +3 -0
  12. tencentcloud/clb/v20180317/models.py +521 -262
  13. tencentcloud/cloudaudit/v20190319/models.py +0 -64
  14. tencentcloud/config/v20220802/models.py +0 -150
  15. tencentcloud/cvm/v20170312/models.py +4 -4
  16. tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
  17. tencentcloud/cynosdb/v20190107/models.py +128 -15
  18. tencentcloud/dlc/v20210125/models.py +30 -0
  19. tencentcloud/domain/v20180808/domain_client.py +4 -0
  20. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  21. tencentcloud/domain/v20180808/models.py +184 -78
  22. tencentcloud/dsgc/v20190723/dsgc_client.py +23 -0
  23. tencentcloud/dsgc/v20190723/models.py +384 -0
  24. tencentcloud/es/v20250101/es_client.py +4 -2
  25. tencentcloud/es/v20250101/models.py +70 -70
  26. tencentcloud/iss/v20230517/models.py +0 -40
  27. tencentcloud/lowcode/v20210108/models.py +17 -2
  28. tencentcloud/ocr/v20181119/models.py +20 -2
  29. tencentcloud/organization/v20210331/models.py +0 -12
  30. tencentcloud/tdmq/v20200217/models.py +185 -15
  31. tencentcloud/thpc/v20230321/errorcodes.py +3 -0
  32. tencentcloud/tke/v20180525/models.py +72 -72
  33. tencentcloud/trocket/v20230308/models.py +190 -12
  34. tencentcloud/trocket/v20230308/trocket_client.py +0 -1
  35. tencentcloud/tsf/v20180326/errorcodes.py +3 -0
  36. tencentcloud/tsf/v20180326/models.py +2 -2
  37. tencentcloud/vod/v20180717/models.py +15 -0
  38. tencentcloud/vpc/v20170312/errorcodes.py +12 -0
  39. tencentcloud/vpc/v20170312/models.py +262 -254
  40. tencentcloud/vpc/v20170312/vpc_client.py +13 -13
  41. tencentcloud/waf/v20180125/models.py +34 -0
  42. tencentcloud/waf/v20180125/waf_client.py +23 -0
  43. tencentcloud/wedata/v20210820/models.py +1704 -0
  44. tencentcloud/wedata/v20210820/wedata_client.py +125 -9
  45. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/METADATA +1 -1
  46. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/RECORD +49 -49
  47. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/LICENSE +0 -0
  48. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/WHEEL +0 -0
  49. {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/top_level.txt +0 -0
@@ -14519,10 +14519,8 @@ class ListVideoDownloadTaskData(AbstractModel):
14519
14519
  def __init__(self):
14520
14520
  r"""
14521
14521
  :param _List: 任务列表
14522
- 注意:此字段可能返回 null,表示取不到有效值。
14523
14522
  :type List: list of VideoDownloadTask
14524
14523
  :param _TotalCount: 任务总数
14525
- 注意:此字段可能返回 null,表示取不到有效值。
14526
14524
  :type TotalCount: int
14527
14525
  """
14528
14526
  self._List = None
@@ -14531,7 +14529,6 @@ class ListVideoDownloadTaskData(AbstractModel):
14531
14529
  @property
14532
14530
  def List(self):
14533
14531
  """任务列表
14534
- 注意:此字段可能返回 null,表示取不到有效值。
14535
14532
  :rtype: list of VideoDownloadTask
14536
14533
  """
14537
14534
  return self._List
@@ -14543,7 +14540,6 @@ class ListVideoDownloadTaskData(AbstractModel):
14543
14540
  @property
14544
14541
  def TotalCount(self):
14545
14542
  """任务总数
14546
- 注意:此字段可能返回 null,表示取不到有效值。
14547
14543
  :rtype: int
14548
14544
  """
14549
14545
  return self._TotalCount
@@ -20156,56 +20152,39 @@ class VideoDownloadTask(AbstractModel):
20156
20152
  def __init__(self):
20157
20153
  r"""
20158
20154
  :param _DownloadTaskId: 下载任务 ID
20159
- 注意:此字段可能返回 null,表示取不到有效值。
20160
20155
  :type DownloadTaskId: str
20161
20156
  :param _ChannelId: 通道 ID
20162
- 注意:此字段可能返回 null,表示取不到有效值。
20163
20157
  :type ChannelId: str
20164
20158
  :param _ChannelName: 通道名称
20165
- 注意:此字段可能返回 null,表示取不到有效值。
20166
20159
  :type ChannelName: str
20167
20160
  :param _ChannelCode: 通道编码
20168
- 注意:此字段可能返回 null,表示取不到有效值。
20169
20161
  :type ChannelCode: str
20170
20162
  :param _DeviceName: 设备名称
20171
- 注意:此字段可能返回 null,表示取不到有效值。
20172
20163
  :type DeviceName: str
20173
20164
  :param _DeviceCode: 设备编码
20174
- 注意:此字段可能返回 null,表示取不到有效值。
20175
20165
  :type DeviceCode: str
20176
20166
  :param _Status: 任务状态(0:未执行;1:执行中;2 任务完成;
20177
20167
  3:任务失败)
20178
- 注意:此字段可能返回 null,表示取不到有效值。
20179
20168
  :type Status: int
20180
20169
  :param _VideoTimeSection: 下载录像时间段
20181
- 注意:此字段可能返回 null,表示取不到有效值。
20182
20170
  :type VideoTimeSection: str
20183
20171
  :param _Scale: 倍速
20184
- 注意:此字段可能返回 null,表示取不到有效值。
20185
20172
  :type Scale: int
20186
20173
  :param _DownloadTime: 下载时长
20187
- 注意:此字段可能返回 null,表示取不到有效值。
20188
20174
  :type DownloadTime: int
20189
20175
  :param _VideoSize: 录像大小
20190
- 注意:此字段可能返回 null,表示取不到有效值。
20191
20176
  :type VideoSize: int
20192
20177
  :param _StartTime: 任务开始时间
20193
- 注意:此字段可能返回 null,表示取不到有效值。
20194
20178
  :type StartTime: str
20195
20179
  :param _EndTime: 任务结束时间
20196
- 注意:此字段可能返回 null,表示取不到有效值。
20197
20180
  :type EndTime: str
20198
20181
  :param _FileDownloadUrl: 文件下载地址
20199
- 注意:此字段可能返回 null,表示取不到有效值。
20200
20182
  :type FileDownloadUrl: str
20201
20183
  :param _FailedReason: 失败原因
20202
- 注意:此字段可能返回 null,表示取不到有效值。
20203
20184
  :type FailedReason: str
20204
20185
  :param _Expire: 生命周期规则,热存天数
20205
- 注意:此字段可能返回 null,表示取不到有效值。
20206
20186
  :type Expire: int
20207
20187
  :param _PreviewUrl: mp4预览地址
20208
- 注意:此字段可能返回 null,表示取不到有效值。
20209
20188
  :type PreviewUrl: str
20210
20189
  """
20211
20190
  self._DownloadTaskId = None
@@ -20229,7 +20208,6 @@ class VideoDownloadTask(AbstractModel):
20229
20208
  @property
20230
20209
  def DownloadTaskId(self):
20231
20210
  """下载任务 ID
20232
- 注意:此字段可能返回 null,表示取不到有效值。
20233
20211
  :rtype: str
20234
20212
  """
20235
20213
  return self._DownloadTaskId
@@ -20241,7 +20219,6 @@ class VideoDownloadTask(AbstractModel):
20241
20219
  @property
20242
20220
  def ChannelId(self):
20243
20221
  """通道 ID
20244
- 注意:此字段可能返回 null,表示取不到有效值。
20245
20222
  :rtype: str
20246
20223
  """
20247
20224
  return self._ChannelId
@@ -20253,7 +20230,6 @@ class VideoDownloadTask(AbstractModel):
20253
20230
  @property
20254
20231
  def ChannelName(self):
20255
20232
  """通道名称
20256
- 注意:此字段可能返回 null,表示取不到有效值。
20257
20233
  :rtype: str
20258
20234
  """
20259
20235
  return self._ChannelName
@@ -20265,7 +20241,6 @@ class VideoDownloadTask(AbstractModel):
20265
20241
  @property
20266
20242
  def ChannelCode(self):
20267
20243
  """通道编码
20268
- 注意:此字段可能返回 null,表示取不到有效值。
20269
20244
  :rtype: str
20270
20245
  """
20271
20246
  return self._ChannelCode
@@ -20277,7 +20252,6 @@ class VideoDownloadTask(AbstractModel):
20277
20252
  @property
20278
20253
  def DeviceName(self):
20279
20254
  """设备名称
20280
- 注意:此字段可能返回 null,表示取不到有效值。
20281
20255
  :rtype: str
20282
20256
  """
20283
20257
  return self._DeviceName
@@ -20289,7 +20263,6 @@ class VideoDownloadTask(AbstractModel):
20289
20263
  @property
20290
20264
  def DeviceCode(self):
20291
20265
  """设备编码
20292
- 注意:此字段可能返回 null,表示取不到有效值。
20293
20266
  :rtype: str
20294
20267
  """
20295
20268
  return self._DeviceCode
@@ -20302,7 +20275,6 @@ class VideoDownloadTask(AbstractModel):
20302
20275
  def Status(self):
20303
20276
  """任务状态(0:未执行;1:执行中;2 任务完成;
20304
20277
  3:任务失败)
20305
- 注意:此字段可能返回 null,表示取不到有效值。
20306
20278
  :rtype: int
20307
20279
  """
20308
20280
  return self._Status
@@ -20314,7 +20286,6 @@ class VideoDownloadTask(AbstractModel):
20314
20286
  @property
20315
20287
  def VideoTimeSection(self):
20316
20288
  """下载录像时间段
20317
- 注意:此字段可能返回 null,表示取不到有效值。
20318
20289
  :rtype: str
20319
20290
  """
20320
20291
  return self._VideoTimeSection
@@ -20326,7 +20297,6 @@ class VideoDownloadTask(AbstractModel):
20326
20297
  @property
20327
20298
  def Scale(self):
20328
20299
  """倍速
20329
- 注意:此字段可能返回 null,表示取不到有效值。
20330
20300
  :rtype: int
20331
20301
  """
20332
20302
  return self._Scale
@@ -20338,7 +20308,6 @@ class VideoDownloadTask(AbstractModel):
20338
20308
  @property
20339
20309
  def DownloadTime(self):
20340
20310
  """下载时长
20341
- 注意:此字段可能返回 null,表示取不到有效值。
20342
20311
  :rtype: int
20343
20312
  """
20344
20313
  return self._DownloadTime
@@ -20350,7 +20319,6 @@ class VideoDownloadTask(AbstractModel):
20350
20319
  @property
20351
20320
  def VideoSize(self):
20352
20321
  """录像大小
20353
- 注意:此字段可能返回 null,表示取不到有效值。
20354
20322
  :rtype: int
20355
20323
  """
20356
20324
  return self._VideoSize
@@ -20362,7 +20330,6 @@ class VideoDownloadTask(AbstractModel):
20362
20330
  @property
20363
20331
  def StartTime(self):
20364
20332
  """任务开始时间
20365
- 注意:此字段可能返回 null,表示取不到有效值。
20366
20333
  :rtype: str
20367
20334
  """
20368
20335
  return self._StartTime
@@ -20374,7 +20341,6 @@ class VideoDownloadTask(AbstractModel):
20374
20341
  @property
20375
20342
  def EndTime(self):
20376
20343
  """任务结束时间
20377
- 注意:此字段可能返回 null,表示取不到有效值。
20378
20344
  :rtype: str
20379
20345
  """
20380
20346
  return self._EndTime
@@ -20386,7 +20352,6 @@ class VideoDownloadTask(AbstractModel):
20386
20352
  @property
20387
20353
  def FileDownloadUrl(self):
20388
20354
  """文件下载地址
20389
- 注意:此字段可能返回 null,表示取不到有效值。
20390
20355
  :rtype: str
20391
20356
  """
20392
20357
  return self._FileDownloadUrl
@@ -20398,7 +20363,6 @@ class VideoDownloadTask(AbstractModel):
20398
20363
  @property
20399
20364
  def FailedReason(self):
20400
20365
  """失败原因
20401
- 注意:此字段可能返回 null,表示取不到有效值。
20402
20366
  :rtype: str
20403
20367
  """
20404
20368
  return self._FailedReason
@@ -20410,7 +20374,6 @@ class VideoDownloadTask(AbstractModel):
20410
20374
  @property
20411
20375
  def Expire(self):
20412
20376
  """生命周期规则,热存天数
20413
- 注意:此字段可能返回 null,表示取不到有效值。
20414
20377
  :rtype: int
20415
20378
  """
20416
20379
  return self._Expire
@@ -20422,7 +20385,6 @@ class VideoDownloadTask(AbstractModel):
20422
20385
  @property
20423
20386
  def PreviewUrl(self):
20424
20387
  """mp4预览地址
20425
- 注意:此字段可能返回 null,表示取不到有效值。
20426
20388
  :rtype: str
20427
20389
  """
20428
20390
  return self._PreviewUrl
@@ -20468,7 +20430,6 @@ class VideoDownloadTaskData(AbstractModel):
20468
20430
  def __init__(self):
20469
20431
  r"""
20470
20432
  :param _DownloadTaskId: 下载任务ID
20471
- 注意:此字段可能返回 null,表示取不到有效值。
20472
20433
  :type DownloadTaskId: str
20473
20434
  """
20474
20435
  self._DownloadTaskId = None
@@ -20476,7 +20437,6 @@ class VideoDownloadTaskData(AbstractModel):
20476
20437
  @property
20477
20438
  def DownloadTaskId(self):
20478
20439
  """下载任务ID
20479
- 注意:此字段可能返回 null,表示取不到有效值。
20480
20440
  :rtype: str
20481
20441
  """
20482
20442
  return self._DownloadTaskId
@@ -3752,10 +3752,12 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3752
3752
  :type DocumentDesc: str
3753
3753
  :param _FileTitle: 文件标题
3754
3754
  :type FileTitle: str
3755
- :param _FileMetaData: 文件元信息,为jsonstring
3755
+ :param _FileMetaData: 文件元信息,为jsonstring
3756
3756
  :type FileMetaData: str
3757
3757
  :param _DocumentSetId: 文件id
3758
3758
  :type DocumentSetId: str
3759
+ :param _Delimiter: 使用 regex 分割文档
3760
+ :type Delimiter: str
3759
3761
  """
3760
3762
  self._EnvId = None
3761
3763
  self._CollectionView = None
@@ -3766,6 +3768,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3766
3768
  self._FileTitle = None
3767
3769
  self._FileMetaData = None
3768
3770
  self._DocumentSetId = None
3771
+ self._Delimiter = None
3769
3772
 
3770
3773
  @property
3771
3774
  def EnvId(self):
@@ -3846,7 +3849,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3846
3849
 
3847
3850
  @property
3848
3851
  def FileMetaData(self):
3849
- """ 文件元信息,为jsonstring
3852
+ """文件元信息,为jsonstring
3850
3853
  :rtype: str
3851
3854
  """
3852
3855
  return self._FileMetaData
@@ -3866,6 +3869,17 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3866
3869
  def DocumentSetId(self, DocumentSetId):
3867
3870
  self._DocumentSetId = DocumentSetId
3868
3871
 
3872
+ @property
3873
+ def Delimiter(self):
3874
+ """使用 regex 分割文档
3875
+ :rtype: str
3876
+ """
3877
+ return self._Delimiter
3878
+
3879
+ @Delimiter.setter
3880
+ def Delimiter(self, Delimiter):
3881
+ self._Delimiter = Delimiter
3882
+
3869
3883
 
3870
3884
  def _deserialize(self, params):
3871
3885
  self._EnvId = params.get("EnvId")
@@ -3877,6 +3891,7 @@ class UploadKnowledgeDocumentSetRequest(AbstractModel):
3877
3891
  self._FileTitle = params.get("FileTitle")
3878
3892
  self._FileMetaData = params.get("FileMetaData")
3879
3893
  self._DocumentSetId = params.get("DocumentSetId")
3894
+ self._Delimiter = params.get("Delimiter")
3880
3895
  memeber_set = set(params.keys())
3881
3896
  for name, value in vars(self).items():
3882
3897
  property_name = name[1:]
@@ -12672,7 +12672,6 @@ Quality,图片质量分数,请求 Config.Quality 时返回(取值范围:
12672
12672
  BorderCodeValue,身份证边框不完整告警阈值分数,请求 Config.BorderCheckWarn时返回(取值范围:0 ~ 100,分数越低边框遮挡可能性越低,建议阈值≤50);
12673
12673
 
12674
12674
  WarnInfos,告警信息,Code 告警码列表和释义:
12675
- -9100 身份证有效日期不合法告警,
12676
12675
  -9101 身份证边框不完整告警,
12677
12676
 
12678
12677
  -9102 身份证复印件告警(黑白及彩色复印件),
@@ -12799,7 +12798,6 @@ Quality,图片质量分数,请求 Config.Quality 时返回(取值范围:
12799
12798
  BorderCodeValue,身份证边框不完整告警阈值分数,请求 Config.BorderCheckWarn时返回(取值范围:0 ~ 100,分数越低边框遮挡可能性越低,建议阈值≤50);
12800
12799
 
12801
12800
  WarnInfos,告警信息,Code 告警码列表和释义:
12802
- -9100 身份证有效日期不合法告警,
12803
12801
  -9101 身份证边框不完整告警,
12804
12802
 
12805
12803
  -9102 身份证复印件告警(黑白及彩色复印件),
@@ -27082,6 +27080,8 @@ class ResultList(AbstractModel):
27082
27080
  :param _Answer: 答案
27083
27081
  注意:此字段可能返回 null,表示取不到有效值。
27084
27082
  :type Answer: list of Element
27083
+ :param _Parse: 解析
27084
+ :type Parse: list of Element
27085
27085
  :param _Coord: 整题的坐标
27086
27086
  注意:此字段可能返回 null,表示取不到有效值。
27087
27087
  :type Coord: list of Polygon
@@ -27091,6 +27091,7 @@ class ResultList(AbstractModel):
27091
27091
  self._Figure = None
27092
27092
  self._Table = None
27093
27093
  self._Answer = None
27094
+ self._Parse = None
27094
27095
  self._Coord = None
27095
27096
 
27096
27097
  @property
@@ -27153,6 +27154,17 @@ class ResultList(AbstractModel):
27153
27154
  def Answer(self, Answer):
27154
27155
  self._Answer = Answer
27155
27156
 
27157
+ @property
27158
+ def Parse(self):
27159
+ """解析
27160
+ :rtype: list of Element
27161
+ """
27162
+ return self._Parse
27163
+
27164
+ @Parse.setter
27165
+ def Parse(self, Parse):
27166
+ self._Parse = Parse
27167
+
27156
27168
  @property
27157
27169
  def Coord(self):
27158
27170
  """整题的坐标
@@ -27197,6 +27209,12 @@ class ResultList(AbstractModel):
27197
27209
  obj = Element()
27198
27210
  obj._deserialize(item)
27199
27211
  self._Answer.append(obj)
27212
+ if params.get("Parse") is not None:
27213
+ self._Parse = []
27214
+ for item in params.get("Parse"):
27215
+ obj = Element()
27216
+ obj._deserialize(item)
27217
+ self._Parse.append(obj)
27200
27218
  if params.get("Coord") is not None:
27201
27219
  self._Coord = []
27202
27220
  for item in params.get("Coord"):
@@ -16487,7 +16487,6 @@ class PolicyDetail(AbstractModel):
16487
16487
  :param _PolicyId: 策略ID。
16488
16488
  :type PolicyId: int
16489
16489
  :param _PolicyName: 策略名称。
16490
- 注意:此字段可能返回 null,表示取不到有效值。
16491
16490
  :type PolicyName: str
16492
16491
  """
16493
16492
  self._PolicyId = None
@@ -16507,7 +16506,6 @@ class PolicyDetail(AbstractModel):
16507
16506
  @property
16508
16507
  def PolicyName(self):
16509
16508
  """策略名称。
16510
- 注意:此字段可能返回 null,表示取不到有效值。
16511
16509
  :rtype: str
16512
16510
  """
16513
16511
  return self._PolicyName
@@ -17780,7 +17778,6 @@ class RolePolicie(AbstractModel):
17780
17778
  def __init__(self):
17781
17779
  r"""
17782
17780
  :param _RolePolicyId: 策略ID。
17783
- 注意:此字段可能返回 null,表示取不到有效值。
17784
17781
  :type RolePolicyId: int
17785
17782
  :param _RolePolicyName: 权限策略名称
17786
17783
  :type RolePolicyName: str
@@ -17800,7 +17797,6 @@ class RolePolicie(AbstractModel):
17800
17797
  @property
17801
17798
  def RolePolicyId(self):
17802
17799
  """策略ID。
17803
- 注意:此字段可能返回 null,表示取不到有效值。
17804
17800
  :rtype: int
17805
17801
  """
17806
17802
  return self._RolePolicyId
@@ -17886,13 +17882,10 @@ class RoleProvisioningsTask(AbstractModel):
17886
17882
  :param _TargetUin: 授权的集团账号目标账号的UIN
17887
17883
  :type TargetUin: int
17888
17884
  :param _TargetType: 同步的集团账号目标账号的类型,ManagerUin管理账号;MemberUin成员账号
17889
- 注意:此字段可能返回 null,表示取不到有效值。
17890
17885
  :type TargetType: str
17891
17886
  :param _TaskType: 任务类型。
17892
- 注意:此字段可能返回 null,表示取不到有效值。
17893
17887
  :type TaskType: str
17894
17888
  :param _TaskStatus: 任务状态:InProgress: 进行中,Failed: 失败 3:Success: 成功
17895
- 注意:此字段可能返回 null,表示取不到有效值。
17896
17889
  :type TaskStatus: str
17897
17890
  """
17898
17891
  self._TaskId = None
@@ -17950,7 +17943,6 @@ class RoleProvisioningsTask(AbstractModel):
17950
17943
  @property
17951
17944
  def TargetType(self):
17952
17945
  """同步的集团账号目标账号的类型,ManagerUin管理账号;MemberUin成员账号
17953
- 注意:此字段可能返回 null,表示取不到有效值。
17954
17946
  :rtype: str
17955
17947
  """
17956
17948
  return self._TargetType
@@ -17962,7 +17954,6 @@ class RoleProvisioningsTask(AbstractModel):
17962
17954
  @property
17963
17955
  def TaskType(self):
17964
17956
  """任务类型。
17965
- 注意:此字段可能返回 null,表示取不到有效值。
17966
17957
  :rtype: str
17967
17958
  """
17968
17959
  return self._TaskType
@@ -17974,7 +17965,6 @@ class RoleProvisioningsTask(AbstractModel):
17974
17965
  @property
17975
17966
  def TaskStatus(self):
17976
17967
  """任务状态:InProgress: 进行中,Failed: 失败 3:Success: 成功
17977
- 注意:此字段可能返回 null,表示取不到有效值。
17978
17968
  :rtype: str
17979
17969
  """
17980
17970
  return self._TaskStatus
@@ -19237,7 +19227,6 @@ class TaskInfo(AbstractModel):
19237
19227
  :param _Status: InProgress:任务执行中。 Success:任务执行成功。 Failed:任务执行失败。
19238
19228
  :type Status: str
19239
19229
  :param _FailureReason: 失败原因
19240
- 注意:此字段可能返回 null,表示取不到有效值。
19241
19230
  :type FailureReason: str
19242
19231
  """
19243
19232
  self._TaskId = None
@@ -19353,7 +19342,6 @@ class TaskInfo(AbstractModel):
19353
19342
  @property
19354
19343
  def FailureReason(self):
19355
19344
  """失败原因
19356
- 注意:此字段可能返回 null,表示取不到有效值。
19357
19345
  :rtype: str
19358
19346
  """
19359
19347
  return self._FailureReason