tencentcloud-sdk-python 3.1.134__py2.py3-none-any.whl → 3.1.135__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 (39) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ags/v20250920/models.py +4 -4
  3. tencentcloud/apm/v20210622/models.py +22 -14
  4. tencentcloud/cat/v20180409/models.py +36 -90
  5. tencentcloud/ccc/v20200210/errorcodes.py +3 -0
  6. tencentcloud/ccc/v20200210/models.py +15 -0
  7. tencentcloud/cfw/v20190904/cfw_client.py +207 -0
  8. tencentcloud/cfw/v20190904/cfw_client_async.py +162 -0
  9. tencentcloud/cfw/v20190904/errorcodes.py +3 -0
  10. tencentcloud/cfw/v20190904/models.py +1727 -239
  11. tencentcloud/essbasic/v20210526/essbasic_client.py +2 -2
  12. tencentcloud/essbasic/v20210526/essbasic_client_async.py +2 -2
  13. tencentcloud/iotexplorer/v20190423/errorcodes.py +12 -0
  14. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +107 -0
  15. tencentcloud/iotexplorer/v20190423/iotexplorer_client_async.py +92 -0
  16. tencentcloud/iotexplorer/v20190423/models.py +522 -0
  17. tencentcloud/monitor/v20180724/models.py +34 -18
  18. tencentcloud/mps/v20190612/models.py +21 -6
  19. tencentcloud/ses/v20201002/models.py +4 -4
  20. tencentcloud/tdmysql/v20211122/models.py +218 -0
  21. tencentcloud/tdmysql/v20211122/tdmysql_client.py +23 -0
  22. tencentcloud/tdmysql/v20211122/tdmysql_client_async.py +18 -0
  23. tencentcloud/teo/v20220901/errorcodes.py +12 -0
  24. tencentcloud/teo/v20220901/models.py +4293 -1034
  25. tencentcloud/teo/v20220901/teo_client.py +253 -0
  26. tencentcloud/teo/v20220901/teo_client_async.py +198 -0
  27. tencentcloud/tke/v20180525/models.py +104 -118
  28. tencentcloud/tokenhub/v20260322/models.py +27 -12
  29. tencentcloud/tokenhub/v20260322/tokenhub_client.py +3 -2
  30. tencentcloud/tokenhub/v20260322/tokenhub_client_async.py +3 -2
  31. tencentcloud/trtc/v20190722/models.py +2 -2
  32. tencentcloud/vod/v20180717/models.py +2 -2
  33. tencentcloud/vod/v20180717/vod_client.py +2 -2
  34. tencentcloud/vod/v20180717/vod_client_async.py +2 -2
  35. {tencentcloud_sdk_python-3.1.134.dist-info → tencentcloud_sdk_python-3.1.135.dist-info}/METADATA +1 -1
  36. {tencentcloud_sdk_python-3.1.134.dist-info → tencentcloud_sdk_python-3.1.135.dist-info}/RECORD +39 -39
  37. {tencentcloud_sdk_python-3.1.134.dist-info → tencentcloud_sdk_python-3.1.135.dist-info}/LICENSE +0 -0
  38. {tencentcloud_sdk_python-3.1.134.dist-info → tencentcloud_sdk_python-3.1.135.dist-info}/WHEEL +0 -0
  39. {tencentcloud_sdk_python-3.1.134.dist-info → tencentcloud_sdk_python-3.1.135.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.134'
17
+ __version__ = '3.1.135'
@@ -4147,9 +4147,9 @@ class VPCConfig(AbstractModel):
4147
4147
 
4148
4148
  def __init__(self):
4149
4149
  r"""
4150
- :param _SubnetIds: VPC子网ID列表
4150
+ :param _SubnetIds: <p>VPC子网ID列表</p>
4151
4151
  :type SubnetIds: list of str
4152
- :param _SecurityGroupIds: 安全组ID列表
4152
+ :param _SecurityGroupIds: <p>安全组ID列表</p>
4153
4153
  :type SecurityGroupIds: list of str
4154
4154
  """
4155
4155
  self._SubnetIds = None
@@ -4157,7 +4157,7 @@ class VPCConfig(AbstractModel):
4157
4157
 
4158
4158
  @property
4159
4159
  def SubnetIds(self):
4160
- r"""VPC子网ID列表
4160
+ r"""<p>VPC子网ID列表</p>
4161
4161
  :rtype: list of str
4162
4162
  """
4163
4163
  return self._SubnetIds
@@ -4168,7 +4168,7 @@ class VPCConfig(AbstractModel):
4168
4168
 
4169
4169
  @property
4170
4170
  def SecurityGroupIds(self):
4171
- r"""安全组ID列表
4171
+ r"""<p>安全组ID列表</p>
4172
4172
  :rtype: list of str
4173
4173
  """
4174
4174
  return self._SecurityGroupIds
@@ -1391,7 +1391,7 @@ class ApmApplicationConfigView(AbstractModel):
1391
1391
  :type ExceptionFilter: str
1392
1392
  :param _ErrorCodeFilter: <p>HTTP 状态码过滤</p>
1393
1393
  :type ErrorCodeFilter: str
1394
- :param _EventEnable: <p>应用诊断开关(已废弃)</p>
1394
+ :param _EventEnable: <p>应用诊断开关</p>
1395
1395
  :type EventEnable: bool
1396
1396
  :param _UrlConvergenceSwitch: <p>URL 收敛开关 0 关 1 开</p>
1397
1397
  :type UrlConvergenceSwitch: int
@@ -1415,9 +1415,9 @@ class ApmApplicationConfigView(AbstractModel):
1415
1415
  :type SnapshotTimeout: int
1416
1416
  :param _AgentEnable: <p>探针总开关</p>
1417
1417
  :type AgentEnable: bool
1418
- :param _InstrumentList: <p>组件列表开关(已废弃)</p>
1418
+ :param _InstrumentList: <p>组件列表开关</p>
1419
1419
  :type InstrumentList: list of Instrument
1420
- :param _TraceSquash: <p>链路压缩开关(已废弃)</p>
1420
+ :param _TraceSquash: <p>链路压缩开关</p>
1421
1421
  :type TraceSquash: bool
1422
1422
  :param _AgentIgnoreOperation: <p>链路过滤配置</p>
1423
1423
  :type AgentIgnoreOperation: str
@@ -1593,7 +1593,7 @@ class ApmApplicationConfigView(AbstractModel):
1593
1593
 
1594
1594
  @property
1595
1595
  def EventEnable(self):
1596
- r"""<p>应用诊断开关(已废弃)</p>
1596
+ r"""<p>应用诊断开关</p>
1597
1597
  :rtype: bool
1598
1598
  """
1599
1599
  return self._EventEnable
@@ -1725,7 +1725,7 @@ class ApmApplicationConfigView(AbstractModel):
1725
1725
 
1726
1726
  @property
1727
1727
  def InstrumentList(self):
1728
- r"""<p>组件列表开关(已废弃)</p>
1728
+ r"""<p>组件列表开关</p>
1729
1729
  :rtype: list of Instrument
1730
1730
  """
1731
1731
  return self._InstrumentList
@@ -1736,7 +1736,7 @@ class ApmApplicationConfigView(AbstractModel):
1736
1736
 
1737
1737
  @property
1738
1738
  def TraceSquash(self):
1739
- r"""<p>链路压缩开关(已废弃)</p>
1739
+ r"""<p>链路压缩开关</p>
1740
1740
  :rtype: bool
1741
1741
  """
1742
1742
  return self._TraceSquash
@@ -4193,6 +4193,8 @@ class CreateApmInstanceRequest(AbstractModel):
4193
4193
 
4194
4194
  @property
4195
4195
  def SpanDailyCounters(self):
4196
+ warnings.warn("parameter `SpanDailyCounters` is deprecated", DeprecationWarning)
4197
+
4196
4198
  r"""业务系统上报额度值,默认赋值为0表示不限制上报额度,已废弃
4197
4199
  :rtype: int
4198
4200
  """
@@ -4200,6 +4202,8 @@ class CreateApmInstanceRequest(AbstractModel):
4200
4202
 
4201
4203
  @SpanDailyCounters.setter
4202
4204
  def SpanDailyCounters(self, SpanDailyCounters):
4205
+ warnings.warn("parameter `SpanDailyCounters` is deprecated", DeprecationWarning)
4206
+
4203
4207
  self._SpanDailyCounters = SpanDailyCounters
4204
4208
 
4205
4209
  @property
@@ -4954,6 +4958,8 @@ class DescribeApmAgentRequest(AbstractModel):
4954
4958
 
4955
4959
  @property
4956
4960
  def ReportMethod(self):
4961
+ warnings.warn("parameter `ReportMethod` is deprecated", DeprecationWarning)
4962
+
4957
4963
  r"""上报方式,已弃用
4958
4964
  :rtype: str
4959
4965
  """
@@ -4961,6 +4967,8 @@ class DescribeApmAgentRequest(AbstractModel):
4961
4967
 
4962
4968
  @ReportMethod.setter
4963
4969
  def ReportMethod(self, ReportMethod):
4970
+ warnings.warn("parameter `ReportMethod` is deprecated", DeprecationWarning)
4971
+
4964
4972
  self._ReportMethod = ReportMethod
4965
4973
 
4966
4974
 
@@ -8722,7 +8730,7 @@ class DescribeTopologyNewResponse(AbstractModel):
8722
8730
  :type Nodes: list of TopologyNode
8723
8731
  :param _Edges: <p>边集合</p>
8724
8732
  :type Edges: list of TopologyEdgeNew
8725
- :param _TopologyModifyFlag: <p>拓扑图是否有修改</p>
8733
+ :param _TopologyModifyFlag: <p>拓扑图是否有修改</p><p>枚举值:</p><ul><li>0: 拓扑图未修改</li><li>1: 拓扑图已修改</li></ul>
8726
8734
  注意:此字段可能返回 null,表示取不到有效值。
8727
8735
  :type TopologyModifyFlag: int
8728
8736
  :param _Selectors: <p>节点数量</p>
@@ -8766,7 +8774,7 @@ class DescribeTopologyNewResponse(AbstractModel):
8766
8774
 
8767
8775
  @property
8768
8776
  def TopologyModifyFlag(self):
8769
- r"""<p>拓扑图是否有修改</p>
8777
+ r"""<p>拓扑图是否有修改</p><p>枚举值:</p><ul><li>0: 拓扑图未修改</li><li>1: 拓扑图已修改</li></ul>
8770
8778
  注意:此字段可能返回 null,表示取不到有效值。
8771
8779
  :rtype: int
8772
8780
  """
@@ -11360,11 +11368,11 @@ class ModifyApmServiceRequest(AbstractModel):
11360
11368
 
11361
11369
  def __init__(self):
11362
11370
  r"""
11363
- :param _ServiceID: 应用ID
11371
+ :param _ServiceID: <p>应用ID</p>
11364
11372
  :type ServiceID: str
11365
- :param _ServiceDescription: 应用描述
11373
+ :param _ServiceDescription: <p>应用描述</p>
11366
11374
  :type ServiceDescription: str
11367
- :param _Tags: 标签列表
11375
+ :param _Tags: <p>标签列表</p>
11368
11376
  :type Tags: list of ApmTag
11369
11377
  """
11370
11378
  self._ServiceID = None
@@ -11373,7 +11381,7 @@ class ModifyApmServiceRequest(AbstractModel):
11373
11381
 
11374
11382
  @property
11375
11383
  def ServiceID(self):
11376
- r"""应用ID
11384
+ r"""<p>应用ID</p>
11377
11385
  :rtype: str
11378
11386
  """
11379
11387
  return self._ServiceID
@@ -11384,7 +11392,7 @@ class ModifyApmServiceRequest(AbstractModel):
11384
11392
 
11385
11393
  @property
11386
11394
  def ServiceDescription(self):
11387
- r"""应用描述
11395
+ r"""<p>应用描述</p>
11388
11396
  :rtype: str
11389
11397
  """
11390
11398
  return self._ServiceDescription
@@ -11395,7 +11403,7 @@ class ModifyApmServiceRequest(AbstractModel):
11395
11403
 
11396
11404
  @property
11397
11405
  def Tags(self):
11398
- r"""标签列表
11406
+ r"""<p>标签列表</p>
11399
11407
  :rtype: list of ApmTag
11400
11408
  """
11401
11409
  return self._Tags
@@ -431,62 +431,35 @@ class DescribeDetailedSingleProbeDataRequest(AbstractModel):
431
431
 
432
432
  def __init__(self):
433
433
  r"""
434
- :param _BeginTime: 开始时间戳(毫秒级)
434
+ :param _BeginTime: <p>开始时间戳(毫秒级)</p>
435
435
  :type BeginTime: int
436
- :param _EndTime: 结束时间戳(毫秒级)
436
+ :param _EndTime: <p>结束时间戳(毫秒级)</p>
437
437
  :type EndTime: int
438
- :param _TaskType: 任务类型
439
- AnalyzeTaskType_Network:网络质量
440
- AnalyzeTaskType_Browse:页面性能
441
- AnalyzeTaskType_UploadDownload:文件传输(含文件上传、文件下载)
442
- AnalyzeTaskType_Transport:端口性能
443
- AnalyzeTaskType_MediaStream:音视频体验
438
+ :param _TaskType: <p>任务类型<br>AnalyzeTaskType_Network:网络质量<br>AnalyzeTaskType_Browse:页面性能<br>AnalyzeTaskType_UploadDownload:文件传输(含文件上传、文件下载)<br>AnalyzeTaskType_Transport:端口性能<br>AnalyzeTaskType_MediaStream:音视频体验</p>
444
439
  :type TaskType: str
445
- :param _SortField: 待排序字段
446
- 可以填写 ProbeTime 拨测时间排序
447
- 也可填写SelectedFields 中的选中字段
440
+ :param _SortField: <p>待排序字段<br>可以填写 ProbeTime 拨测时间排序<br>也可填写SelectedFields 中的选中字段</p>
448
441
  :type SortField: str
449
- :param _Ascending: true表示升序
442
+ :param _Ascending: <p>true表示升序</p>
450
443
  :type Ascending: bool
451
- :param _SelectedFields: 选中字段,如ProbeTime、TransferTime、TransferSize等。
444
+ :param _SelectedFields: <p>选中字段,如ProbeTime、TransferTime、TransferSize等。</p>
452
445
  :type SelectedFields: list of str
453
- :param _Offset: 起始取数位置
446
+ :param _Offset: <p>起始取数位置</p>
454
447
  :type Offset: int
455
- :param _Limit: 取数数量
448
+ :param _Limit: <p>取数数量</p>
456
449
  :type Limit: int
457
- :param _TaskID: 任务ID
450
+ :param _TaskID: <p>任务ID</p>
458
451
  :type TaskID: list of str
459
- :param _Operators: 拨测点运营商
460
-
461
- 这里实际按拨测结果中的运营商来填写即可
462
-
463
- 电信:中国电信
464
- 移动:中国移动
465
- 联通:中国联通
452
+ :param _Operators: <p>拨测点运营商</p><p>这里实际按拨测结果中的运营商来填写即可</p><p>电信:中国电信<br>移动:中国移动<br>联通:中国联通</p>
466
453
  :type Operators: list of str
467
- :param _Districts: 拨测点地区
468
-
469
- 这里实际按拨测结果中的地区来填写即可
470
-
471
- 国内一般是省级单位,如广东、广西、中国香港;直辖市则填北京、上海
472
-
473
- 境外一般是国家名,如澳大利亚、新加坡
454
+ :param _Districts: <p>拨测点地区</p><p>这里实际按拨测结果中的地区来填写即可</p><p>国内一般是省级单位,如广东、广西、中国香港;直辖市则填北京、上海</p><p>境外一般是国家名,如澳大利亚、新加坡</p>
474
455
  :type Districts: list of str
475
- :param _ErrorTypes: 错误类型
456
+ :param _ErrorTypes: <p>错误类型</p>
476
457
  :type ErrorTypes: list of str
477
- :param _City: 城市
478
- 这里实际按拨测结果中的城市来填写即可
479
-
480
- 示例:
481
-
482
- 深圳市
483
- 武汉市
484
- 首尔
485
- 多伦多
458
+ :param _City: <p>城市<br>这里实际按拨测结果中的城市来填写即可</p><p>示例:</p><p>深圳市<br>武汉市<br>首尔<br>多伦多</p>
486
459
  :type City: list of str
487
- :param _ScrollID: es scroll查询id
460
+ :param _ScrollID: <p>es scroll查询id</p>
488
461
  :type ScrollID: str
489
- :param _QueryFlag: 详情数据下载
462
+ :param _QueryFlag: <p>详情数据下载</p>
490
463
  :type QueryFlag: str
491
464
  """
492
465
  self._BeginTime = None
@@ -507,7 +480,7 @@ AnalyzeTaskType_MediaStream:音视频体验
507
480
 
508
481
  @property
509
482
  def BeginTime(self):
510
- r"""开始时间戳(毫秒级)
483
+ r"""<p>开始时间戳(毫秒级)</p>
511
484
  :rtype: int
512
485
  """
513
486
  return self._BeginTime
@@ -518,7 +491,7 @@ AnalyzeTaskType_MediaStream:音视频体验
518
491
 
519
492
  @property
520
493
  def EndTime(self):
521
- r"""结束时间戳(毫秒级)
494
+ r"""<p>结束时间戳(毫秒级)</p>
522
495
  :rtype: int
523
496
  """
524
497
  return self._EndTime
@@ -529,12 +502,7 @@ AnalyzeTaskType_MediaStream:音视频体验
529
502
 
530
503
  @property
531
504
  def TaskType(self):
532
- r"""任务类型
533
- AnalyzeTaskType_Network:网络质量
534
- AnalyzeTaskType_Browse:页面性能
535
- AnalyzeTaskType_UploadDownload:文件传输(含文件上传、文件下载)
536
- AnalyzeTaskType_Transport:端口性能
537
- AnalyzeTaskType_MediaStream:音视频体验
505
+ r"""<p>任务类型<br>AnalyzeTaskType_Network:网络质量<br>AnalyzeTaskType_Browse:页面性能<br>AnalyzeTaskType_UploadDownload:文件传输(含文件上传、文件下载)<br>AnalyzeTaskType_Transport:端口性能<br>AnalyzeTaskType_MediaStream:音视频体验</p>
538
506
  :rtype: str
539
507
  """
540
508
  return self._TaskType
@@ -545,9 +513,7 @@ AnalyzeTaskType_MediaStream:音视频体验
545
513
 
546
514
  @property
547
515
  def SortField(self):
548
- r"""待排序字段
549
- 可以填写 ProbeTime 拨测时间排序
550
- 也可填写SelectedFields 中的选中字段
516
+ r"""<p>待排序字段<br>可以填写 ProbeTime 拨测时间排序<br>也可填写SelectedFields 中的选中字段</p>
551
517
  :rtype: str
552
518
  """
553
519
  return self._SortField
@@ -558,7 +524,7 @@ AnalyzeTaskType_MediaStream:音视频体验
558
524
 
559
525
  @property
560
526
  def Ascending(self):
561
- r"""true表示升序
527
+ r"""<p>true表示升序</p>
562
528
  :rtype: bool
563
529
  """
564
530
  return self._Ascending
@@ -569,7 +535,7 @@ AnalyzeTaskType_MediaStream:音视频体验
569
535
 
570
536
  @property
571
537
  def SelectedFields(self):
572
- r"""选中字段,如ProbeTime、TransferTime、TransferSize等。
538
+ r"""<p>选中字段,如ProbeTime、TransferTime、TransferSize等。</p>
573
539
  :rtype: list of str
574
540
  """
575
541
  return self._SelectedFields
@@ -580,7 +546,7 @@ AnalyzeTaskType_MediaStream:音视频体验
580
546
 
581
547
  @property
582
548
  def Offset(self):
583
- r"""起始取数位置
549
+ r"""<p>起始取数位置</p>
584
550
  :rtype: int
585
551
  """
586
552
  return self._Offset
@@ -591,7 +557,7 @@ AnalyzeTaskType_MediaStream:音视频体验
591
557
 
592
558
  @property
593
559
  def Limit(self):
594
- r"""取数数量
560
+ r"""<p>取数数量</p>
595
561
  :rtype: int
596
562
  """
597
563
  return self._Limit
@@ -602,7 +568,7 @@ AnalyzeTaskType_MediaStream:音视频体验
602
568
 
603
569
  @property
604
570
  def TaskID(self):
605
- r"""任务ID
571
+ r"""<p>任务ID</p>
606
572
  :rtype: list of str
607
573
  """
608
574
  return self._TaskID
@@ -613,13 +579,7 @@ AnalyzeTaskType_MediaStream:音视频体验
613
579
 
614
580
  @property
615
581
  def Operators(self):
616
- r"""拨测点运营商
617
-
618
- 这里实际按拨测结果中的运营商来填写即可
619
-
620
- 电信:中国电信
621
- 移动:中国移动
622
- 联通:中国联通
582
+ r"""<p>拨测点运营商</p><p>这里实际按拨测结果中的运营商来填写即可</p><p>电信:中国电信<br>移动:中国移动<br>联通:中国联通</p>
623
583
  :rtype: list of str
624
584
  """
625
585
  return self._Operators
@@ -630,13 +590,7 @@ AnalyzeTaskType_MediaStream:音视频体验
630
590
 
631
591
  @property
632
592
  def Districts(self):
633
- r"""拨测点地区
634
-
635
- 这里实际按拨测结果中的地区来填写即可
636
-
637
- 国内一般是省级单位,如广东、广西、中国香港;直辖市则填北京、上海
638
-
639
- 境外一般是国家名,如澳大利亚、新加坡
593
+ r"""<p>拨测点地区</p><p>这里实际按拨测结果中的地区来填写即可</p><p>国内一般是省级单位,如广东、广西、中国香港;直辖市则填北京、上海</p><p>境外一般是国家名,如澳大利亚、新加坡</p>
640
594
  :rtype: list of str
641
595
  """
642
596
  return self._Districts
@@ -647,7 +601,7 @@ AnalyzeTaskType_MediaStream:音视频体验
647
601
 
648
602
  @property
649
603
  def ErrorTypes(self):
650
- r"""错误类型
604
+ r"""<p>错误类型</p>
651
605
  :rtype: list of str
652
606
  """
653
607
  return self._ErrorTypes
@@ -658,15 +612,7 @@ AnalyzeTaskType_MediaStream:音视频体验
658
612
 
659
613
  @property
660
614
  def City(self):
661
- r"""城市
662
- 这里实际按拨测结果中的城市来填写即可
663
-
664
- 示例:
665
-
666
- 深圳市
667
- 武汉市
668
- 首尔
669
- 多伦多
615
+ r"""<p>城市<br>这里实际按拨测结果中的城市来填写即可</p><p>示例:</p><p>深圳市<br>武汉市<br>首尔<br>多伦多</p>
670
616
  :rtype: list of str
671
617
  """
672
618
  return self._City
@@ -677,7 +623,7 @@ AnalyzeTaskType_MediaStream:音视频体验
677
623
 
678
624
  @property
679
625
  def ScrollID(self):
680
- r"""es scroll查询id
626
+ r"""<p>es scroll查询id</p>
681
627
  :rtype: str
682
628
  """
683
629
  return self._ScrollID
@@ -688,7 +634,7 @@ AnalyzeTaskType_MediaStream:音视频体验
688
634
 
689
635
  @property
690
636
  def QueryFlag(self):
691
- r"""详情数据下载
637
+ r"""<p>详情数据下载</p>
692
638
  :rtype: str
693
639
  """
694
640
  return self._QueryFlag
@@ -731,11 +677,11 @@ class DescribeDetailedSingleProbeDataResponse(AbstractModel):
731
677
 
732
678
  def __init__(self):
733
679
  r"""
734
- :param _DataSet: 单次详情数据
680
+ :param _DataSet: <p>单次详情数据</p>
735
681
  :type DataSet: list of DetailedSingleDataDefine
736
- :param _TotalNumber: 符合条件的数据总数
682
+ :param _TotalNumber: <p>符合条件的数据总数</p>
737
683
  :type TotalNumber: int
738
- :param _ScrollID: es scroll查询的id
684
+ :param _ScrollID: <p>es scroll查询的id</p>
739
685
  :type ScrollID: str
740
686
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
741
687
  :type RequestId: str
@@ -747,7 +693,7 @@ class DescribeDetailedSingleProbeDataResponse(AbstractModel):
747
693
 
748
694
  @property
749
695
  def DataSet(self):
750
- r"""单次详情数据
696
+ r"""<p>单次详情数据</p>
751
697
  :rtype: list of DetailedSingleDataDefine
752
698
  """
753
699
  return self._DataSet
@@ -758,7 +704,7 @@ class DescribeDetailedSingleProbeDataResponse(AbstractModel):
758
704
 
759
705
  @property
760
706
  def TotalNumber(self):
761
- r"""符合条件的数据总数
707
+ r"""<p>符合条件的数据总数</p>
762
708
  :rtype: int
763
709
  """
764
710
  return self._TotalNumber
@@ -769,7 +715,7 @@ class DescribeDetailedSingleProbeDataResponse(AbstractModel):
769
715
 
770
716
  @property
771
717
  def ScrollID(self):
772
- r"""es scroll查询的id
718
+ r"""<p>es scroll查询的id</p>
773
719
  :rtype: str
774
720
  """
775
721
  return self._ScrollID
@@ -188,6 +188,9 @@ LIMITEXCEEDED_INSUFFICIENTLICENSE = 'LimitExceeded.InsufficientLicense'
188
188
  # 超出数量限制。
189
189
  LIMITEXCEEDED_OUTOFCOUNTLIMIT = 'LimitExceeded.OutOfCountLimit'
190
190
 
191
+ # 超过当前智能体的并发上限
192
+ LIMITEXCEEDED_OUTOFQUOTAMAXCOUNT = 'LimitExceeded.OutOfQuotaMaxCount'
193
+
191
194
  # 缺少参数错误。
192
195
  MISSINGPARAMETER = 'MissingParameter'
193
196
 
@@ -5120,6 +5120,8 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
5120
5120
  :type AvailableWorkTimeConfig: list of AvailableTimeConfig
5121
5121
  :param _TriggerStrategy: <p>触发策略</p>
5122
5122
  :type TriggerStrategy: list of TriggerStrategyItem
5123
+ :param _ConcurrencyLimit: <p>智能体并发限制</p>
5124
+ :type ConcurrencyLimit: int
5123
5125
  """
5124
5126
  self._SdkAppId = None
5125
5127
  self._NotBefore = None
@@ -5142,6 +5144,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
5142
5144
  self._RetryTags = None
5143
5145
  self._AvailableWorkTimeConfig = None
5144
5146
  self._TriggerStrategy = None
5147
+ self._ConcurrencyLimit = None
5145
5148
 
5146
5149
  @property
5147
5150
  def SdkAppId(self):
@@ -5374,6 +5377,17 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
5374
5377
  def TriggerStrategy(self, TriggerStrategy):
5375
5378
  self._TriggerStrategy = TriggerStrategy
5376
5379
 
5380
+ @property
5381
+ def ConcurrencyLimit(self):
5382
+ r"""<p>智能体并发限制</p>
5383
+ :rtype: int
5384
+ """
5385
+ return self._ConcurrencyLimit
5386
+
5387
+ @ConcurrencyLimit.setter
5388
+ def ConcurrencyLimit(self, ConcurrencyLimit):
5389
+ self._ConcurrencyLimit = ConcurrencyLimit
5390
+
5377
5391
 
5378
5392
  def _deserialize(self, params):
5379
5393
  self._SdkAppId = params.get("SdkAppId")
@@ -5427,6 +5441,7 @@ class CreateAutoCalloutTaskRequest(AbstractModel):
5427
5441
  obj = TriggerStrategyItem()
5428
5442
  obj._deserialize(item)
5429
5443
  self._TriggerStrategy.append(obj)
5444
+ self._ConcurrencyLimit = params.get("ConcurrencyLimit")
5430
5445
  memeber_set = set(params.keys())
5431
5446
  for name, value in vars(self).items():
5432
5447
  property_name = name[1:]