tencentcloud-sdk-python 3.1.131__py2.py3-none-any.whl → 3.1.132__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 (35) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ags/v20250920/models.py +10 -10
  3. tencentcloud/apm/v20210622/models.py +131 -86
  4. tencentcloud/cdb/v20170320/models.py +185 -84
  5. tencentcloud/ckafka/v20190819/ckafka_client.py +23 -0
  6. tencentcloud/ckafka/v20190819/ckafka_client_async.py +18 -0
  7. tencentcloud/ckafka/v20190819/models.py +81 -0
  8. tencentcloud/clb/v20180317/models.py +15 -0
  9. tencentcloud/csip/v20221121/models.py +15 -0
  10. tencentcloud/ess/v20201111/models.py +6 -58
  11. tencentcloud/fwm/v20250611/models.py +162 -282
  12. tencentcloud/ga2/v20250115/models.py +12 -12
  13. tencentcloud/goosefs/v20220519/models.py +25 -10
  14. tencentcloud/mongodb/v20190725/models.py +126 -6
  15. tencentcloud/mongodb/v20190725/mongodb_client.py +1 -1
  16. tencentcloud/mongodb/v20190725/mongodb_client_async.py +1 -1
  17. tencentcloud/monitor/v20180724/models.py +100 -100
  18. tencentcloud/mps/v20190612/models.py +2 -2
  19. tencentcloud/ocr/v20181119/models.py +66 -102
  20. tencentcloud/redis/v20180412/models.py +151 -130
  21. tencentcloud/tokenhub/v20260322/errorcodes.py +78 -0
  22. tencentcloud/tokenhub/v20260322/models.py +1023 -36
  23. tencentcloud/tokenhub/v20260322/tokenhub_client.py +130 -0
  24. tencentcloud/tokenhub/v20260322/tokenhub_client_async.py +105 -0
  25. tencentcloud/trro/v20220325/models.py +10 -10
  26. tencentcloud/tse/v20201207/errorcodes.py +3 -0
  27. tencentcloud/tse/v20201207/models.py +1429 -76
  28. tencentcloud/tsf/v20180326/models.py +25 -10
  29. tencentcloud/vod/v20180717/models.py +68 -0
  30. tencentcloud/waf/v20180125/models.py +28 -13
  31. {tencentcloud_sdk_python-3.1.131.dist-info → tencentcloud_sdk_python-3.1.132.dist-info}/METADATA +1 -1
  32. {tencentcloud_sdk_python-3.1.131.dist-info → tencentcloud_sdk_python-3.1.132.dist-info}/RECORD +35 -35
  33. {tencentcloud_sdk_python-3.1.131.dist-info → tencentcloud_sdk_python-3.1.132.dist-info}/LICENSE +0 -0
  34. {tencentcloud_sdk_python-3.1.131.dist-info → tencentcloud_sdk_python-3.1.132.dist-info}/WHEEL +0 -0
  35. {tencentcloud_sdk_python-3.1.131.dist-info → tencentcloud_sdk_python-3.1.132.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.131'
17
+ __version__ = '3.1.132'
@@ -4014,15 +4014,15 @@ class UpdateSandboxToolRequest(AbstractModel):
4014
4014
 
4015
4015
  def __init__(self):
4016
4016
  r"""
4017
- :param _ToolId: 沙箱工具ID
4017
+ :param _ToolId: <p>沙箱工具ID</p>
4018
4018
  :type ToolId: str
4019
- :param _Description: 沙箱工具描述,最大长度200字符
4019
+ :param _Description: <p>沙箱工具描述,最大长度200字符</p>
4020
4020
  :type Description: str
4021
- :param _NetworkConfiguration: 网络配置
4021
+ :param _NetworkConfiguration: <p>网络配置</p>
4022
4022
  :type NetworkConfiguration: :class:`tencentcloud.ags.v20250920.models.NetworkConfiguration`
4023
- :param _Tags: 标签
4023
+ :param _Tags: <p>标签</p>
4024
4024
  :type Tags: list of Tag
4025
- :param _CustomConfiguration: 沙箱工具自定义配置
4025
+ :param _CustomConfiguration: <p>沙箱工具自定义配置</p>
4026
4026
  :type CustomConfiguration: :class:`tencentcloud.ags.v20250920.models.CustomConfiguration`
4027
4027
  """
4028
4028
  self._ToolId = None
@@ -4033,7 +4033,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4033
4033
 
4034
4034
  @property
4035
4035
  def ToolId(self):
4036
- r"""沙箱工具ID
4036
+ r"""<p>沙箱工具ID</p>
4037
4037
  :rtype: str
4038
4038
  """
4039
4039
  return self._ToolId
@@ -4044,7 +4044,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4044
4044
 
4045
4045
  @property
4046
4046
  def Description(self):
4047
- r"""沙箱工具描述,最大长度200字符
4047
+ r"""<p>沙箱工具描述,最大长度200字符</p>
4048
4048
  :rtype: str
4049
4049
  """
4050
4050
  return self._Description
@@ -4055,7 +4055,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4055
4055
 
4056
4056
  @property
4057
4057
  def NetworkConfiguration(self):
4058
- r"""网络配置
4058
+ r"""<p>网络配置</p>
4059
4059
  :rtype: :class:`tencentcloud.ags.v20250920.models.NetworkConfiguration`
4060
4060
  """
4061
4061
  return self._NetworkConfiguration
@@ -4066,7 +4066,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4066
4066
 
4067
4067
  @property
4068
4068
  def Tags(self):
4069
- r"""标签
4069
+ r"""<p>标签</p>
4070
4070
  :rtype: list of Tag
4071
4071
  """
4072
4072
  return self._Tags
@@ -4077,7 +4077,7 @@ class UpdateSandboxToolRequest(AbstractModel):
4077
4077
 
4078
4078
  @property
4079
4079
  def CustomConfiguration(self):
4080
- r"""沙箱工具自定义配置
4080
+ r"""<p>沙箱工具自定义配置</p>
4081
4081
  :rtype: :class:`tencentcloud.ags.v20250920.models.CustomConfiguration`
4082
4082
  """
4083
4083
  return self._CustomConfiguration
@@ -10258,92 +10258,98 @@ class ModifyApmInstanceRequest(AbstractModel):
10258
10258
 
10259
10259
  def __init__(self):
10260
10260
  r"""
10261
- :param _InstanceId: 业务系统 ID
10261
+ :param _InstanceId: <p>业务系统 ID</p>
10262
10262
  :type InstanceId: str
10263
- :param _Name: 业务系统名
10263
+ :param _Name: <p>业务系统名</p>
10264
10264
  :type Name: str
10265
- :param _Tags: Tag 列表
10265
+ :param _Tags: <p>Tag 列表</p>
10266
10266
  :type Tags: list of ApmTag
10267
- :param _Description: 业务系统描述
10267
+ :param _Description: <p>业务系统描述</p>
10268
10268
  :type Description: str
10269
- :param _TraceDuration: Trace 数据保存时长(单位:天)
10269
+ :param _TraceDuration: <p>Trace 数据保存时长(单位:天)</p>
10270
10270
  :type TraceDuration: int
10271
- :param _OpenBilling: 是否开启计费
10271
+ :param _OpenBilling: <p>是否开启计费</p>
10272
10272
  :type OpenBilling: bool
10273
- :param _SpanDailyCounters: 业务系统上报额度
10273
+ :param _SpanDailyCounters: <p>业务系统上报额度</p>
10274
10274
  :type SpanDailyCounters: int
10275
- :param _ErrRateThreshold: 错误率警示线,当应用的平均错误率超出该阈值时,系统会给出异常提示。
10275
+ :param _ErrRateThreshold: <p>错误率警示线,当应用的平均错误率超出该阈值时,系统会给出异常提示。</p>
10276
10276
  :type ErrRateThreshold: int
10277
- :param _SampleRate: 采样率(单位:%)
10277
+ :param _SampleRate: <p>采样率(单位:%)</p>
10278
10278
  :type SampleRate: int
10279
- :param _ErrorSample: 是否开启错误采样(0=关, 1=开)
10279
+ :param _ErrorSample: <p>是否开启错误采样(0=关, 1=开)</p>
10280
10280
  :type ErrorSample: int
10281
- :param _SlowRequestSavedThreshold: 采样慢调用保存阈值(单位:ms
10281
+ :param _SlowRequestSavedThreshold: <p>采样慢调用保存阈值(单位:ms)</p>
10282
10282
  :type SlowRequestSavedThreshold: int
10283
- :param _IsRelatedLog: 是否开启日志功能(0=关, 1=开)
10283
+ :param _IsRelatedLog: <p>是否开启日志功能(0=关, 1=开)</p>
10284
10284
  :type IsRelatedLog: int
10285
- :param _LogRegion: 日志地域,开启日志功能后才会生效
10285
+ :param _LogRegion: <p>日志地域,开启日志功能后才会生效</p>
10286
10286
  :type LogRegion: str
10287
- :param _LogTopicID: CLS 日志主题 ID,开启日志功能后才会生效
10287
+ :param _LogTopicID: <p>CLS 日志主题 ID,开启日志功能后才会生效</p>
10288
10288
  :type LogTopicID: str
10289
- :param _LogSet: 日志集,开启日志功能后才会生效
10289
+ :param _LogSet: <p>日志集,开启日志功能后才会生效</p>
10290
10290
  :type LogSet: str
10291
- :param _LogSource: 日志源,开启日志功能后才会生效
10291
+ :param _LogSource: <p>日志源,开启日志功能后才会生效</p>
10292
10292
  :type LogSource: str
10293
- :param _CustomShowTags: 用户自定义展示标签列表
10293
+ :param _CustomShowTags: <p>用户自定义展示标签列表</p>
10294
10294
  :type CustomShowTags: list of str
10295
- :param _PayMode: 修改计费模式(1为预付费,0为按量付费)
10295
+ :param _PayMode: <p>修改计费模式(1为预付费,0为按量付费)</p>
10296
10296
  :type PayMode: int
10297
- :param _ResponseDurationWarningThreshold: 响应时间警示线
10297
+ :param _ResponseDurationWarningThreshold: <p>响应时间警示线</p>
10298
10298
  :type ResponseDurationWarningThreshold: int
10299
- :param _Free: 是否免费(0=付费版;1=TSF 受限免费版;2=免费版),默认0
10299
+ :param _Free: <p>是否免费(0=付费版;1=TSF 受限免费版;2=免费版),默认0</p>
10300
10300
  :type Free: int
10301
- :param _IsRelatedDashboard: 是否关联 Dashboard(0=关,1=开)
10301
+ :param _IsRelatedDashboard: <p>是否关联 Dashboard(0=关,1=开)</p>
10302
10302
  :type IsRelatedDashboard: int
10303
- :param _DashboardTopicID: 关联的 Dashboard ID,开启关联 Dashboard 后才会生效
10303
+ :param _DashboardTopicID: <p>关联的 Dashboard ID,开启关联 Dashboard 后才会生效</p>
10304
10304
  :type DashboardTopicID: str
10305
- :param _IsSqlInjectionAnalysis: 是否开启 SQL 注入检测(0=关,1=开)
10305
+ :param _IsSqlInjectionAnalysis: <p>是否开启 SQL 注入检测(0=关,1=开)</p>
10306
10306
  :type IsSqlInjectionAnalysis: int
10307
- :param _IsInstrumentationVulnerabilityScan: 是否开启组件漏洞检测(0=关,1=开)
10307
+ :param _IsInstrumentationVulnerabilityScan: <p>是否开启组件漏洞检测(0=关,1=开)</p>
10308
10308
  :type IsInstrumentationVulnerabilityScan: int
10309
- :param _IsRemoteCommandExecutionAnalysis: 是否开启远程命令攻击检测
10309
+ :param _IsRemoteCommandExecutionAnalysis: <p>是否开启远程命令攻击检测</p>
10310
10310
  :type IsRemoteCommandExecutionAnalysis: int
10311
- :param _IsMemoryHijackingAnalysis: 是否开启内存马检测
10311
+ :param _IsMemoryHijackingAnalysis: <p>是否开启内存马检测</p>
10312
10312
  :type IsMemoryHijackingAnalysis: int
10313
- :param _LogIndexType: CLS索引类型(0=全文索引,1=键值索引)
10313
+ :param _LogIndexType: <p>CLS索引类型(0=全文索引,1=键值索引)</p>
10314
10314
  :type LogIndexType: int
10315
- :param _LogTraceIdKey: traceId的索引key: 当CLS索引类型为键值索引时生效
10315
+ :param _LogTraceIdKey: <p>traceId的索引key: 当CLS索引类型为键值索引时生效</p>
10316
10316
  :type LogTraceIdKey: str
10317
- :param _IsDeleteAnyFileAnalysis: 是否开启删除任意文件检测(0-关闭,1-开启)
10317
+ :param _IsDeleteAnyFileAnalysis: <p>是否开启删除任意文件检测(0-关闭,1-开启)</p>
10318
10318
  :type IsDeleteAnyFileAnalysis: int
10319
- :param _IsReadAnyFileAnalysis: 是否开启读取任意文件检测(0-关闭,1-开启)
10319
+ :param _IsReadAnyFileAnalysis: <p>是否开启读取任意文件检测(0-关闭,1-开启)</p>
10320
10320
  :type IsReadAnyFileAnalysis: int
10321
- :param _IsUploadAnyFileAnalysis: 是否开启上传任意文件检测(0-关闭,1-开启)
10321
+ :param _IsUploadAnyFileAnalysis: <p>是否开启上传任意文件检测(0-关闭,1-开启)</p>
10322
10322
  :type IsUploadAnyFileAnalysis: int
10323
- :param _IsIncludeAnyFileAnalysis: 是否开启包含任意文件检测(0-关闭,1-开启)
10323
+ :param _IsIncludeAnyFileAnalysis: <p>是否开启包含任意文件检测(0-关闭,1-开启)</p>
10324
10324
  :type IsIncludeAnyFileAnalysis: int
10325
- :param _IsDirectoryTraversalAnalysis: 是否开启目录遍历检测(0-关闭,1-开启)
10325
+ :param _IsDirectoryTraversalAnalysis: <p>是否开启目录遍历检测(0-关闭,1-开启)</p>
10326
10326
  :type IsDirectoryTraversalAnalysis: int
10327
- :param _IsTemplateEngineInjectionAnalysis: 是否开启模板引擎注入检测(0-关闭,1-开启)
10327
+ :param _IsTemplateEngineInjectionAnalysis: <p>是否开启模板引擎注入检测(0-关闭,1-开启)</p>
10328
10328
  :type IsTemplateEngineInjectionAnalysis: int
10329
- :param _IsScriptEngineInjectionAnalysis: 是否开启脚本引擎注入检测(0-关闭,1-开启)
10329
+ :param _IsScriptEngineInjectionAnalysis: <p>是否开启脚本引擎注入检测(0-关闭,1-开启)</p>
10330
10330
  :type IsScriptEngineInjectionAnalysis: int
10331
- :param _IsExpressionInjectionAnalysis: 是否开启表达式注入检测(0-关闭,1-开启)
10331
+ :param _IsExpressionInjectionAnalysis: <p>是否开启表达式注入检测(0-关闭,1-开启)</p>
10332
10332
  :type IsExpressionInjectionAnalysis: int
10333
- :param _IsJNDIInjectionAnalysis: 是否开启JNDI注入检测(0-关闭,1-开启)
10333
+ :param _IsJNDIInjectionAnalysis: <p>是否开启JNDI注入检测(0-关闭,1-开启)</p>
10334
10334
  :type IsJNDIInjectionAnalysis: int
10335
- :param _IsJNIInjectionAnalysis: 是否开启JNI注入检测(0-关闭,1-开启)
10335
+ :param _IsJNIInjectionAnalysis: <p>是否开启JNI注入检测(0-关闭,1-开启)</p>
10336
10336
  :type IsJNIInjectionAnalysis: int
10337
- :param _IsWebshellBackdoorAnalysis: 是否开启Webshell后门检测(0-关闭,1-开启)
10337
+ :param _IsWebshellBackdoorAnalysis: <p>是否开启Webshell后门检测(0-关闭,1-开启)</p>
10338
10338
  :type IsWebshellBackdoorAnalysis: int
10339
- :param _IsDeserializationAnalysis: 是否开启反序列化检测(0-关闭,1-开启)
10339
+ :param _IsDeserializationAnalysis: <p>是否开启反序列化检测(0-关闭,1-开启)</p>
10340
10340
  :type IsDeserializationAnalysis: int
10341
- :param _UrlLongSegmentThreshold: URL长分段收敛阈值
10341
+ :param _UrlLongSegmentThreshold: <p>URL长分段收敛阈值</p>
10342
10342
  :type UrlLongSegmentThreshold: int
10343
- :param _UrlNumberSegmentThreshold: URL数字分段收敛阈值
10343
+ :param _UrlNumberSegmentThreshold: <p>URL数字分段收敛阈值</p>
10344
10344
  :type UrlNumberSegmentThreshold: int
10345
- :param _LogSpanIdKey: spanId的索引key: 当CLS索引类型为键值索引时生效
10345
+ :param _LogSpanIdKey: <p>spanId的索引key: 当CLS索引类型为键值索引时生效</p>
10346
10346
  :type LogSpanIdKey: str
10347
+ :param _EnableHeadSampler: <p>是否开启探针头采样</p>
10348
+ :type EnableHeadSampler: bool
10349
+ :param _HeadSamplerType: <p>头采类型</p><p>枚举值:</p><ul><li>parentbased_traceidratio: 默认</li></ul>
10350
+ :type HeadSamplerType: str
10351
+ :param _HeadSamplerArg: <p>头采采样率</p><p>取值范围:[0, 100]</p>
10352
+ :type HeadSamplerArg: int
10347
10353
  """
10348
10354
  self._InstanceId = None
10349
10355
  self._Name = None
@@ -10388,10 +10394,13 @@ class ModifyApmInstanceRequest(AbstractModel):
10388
10394
  self._UrlLongSegmentThreshold = None
10389
10395
  self._UrlNumberSegmentThreshold = None
10390
10396
  self._LogSpanIdKey = None
10397
+ self._EnableHeadSampler = None
10398
+ self._HeadSamplerType = None
10399
+ self._HeadSamplerArg = None
10391
10400
 
10392
10401
  @property
10393
10402
  def InstanceId(self):
10394
- r"""业务系统 ID
10403
+ r"""<p>业务系统 ID</p>
10395
10404
  :rtype: str
10396
10405
  """
10397
10406
  return self._InstanceId
@@ -10402,7 +10411,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10402
10411
 
10403
10412
  @property
10404
10413
  def Name(self):
10405
- r"""业务系统名
10414
+ r"""<p>业务系统名</p>
10406
10415
  :rtype: str
10407
10416
  """
10408
10417
  return self._Name
@@ -10413,7 +10422,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10413
10422
 
10414
10423
  @property
10415
10424
  def Tags(self):
10416
- r"""Tag 列表
10425
+ r"""<p>Tag 列表</p>
10417
10426
  :rtype: list of ApmTag
10418
10427
  """
10419
10428
  return self._Tags
@@ -10424,7 +10433,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10424
10433
 
10425
10434
  @property
10426
10435
  def Description(self):
10427
- r"""业务系统描述
10436
+ r"""<p>业务系统描述</p>
10428
10437
  :rtype: str
10429
10438
  """
10430
10439
  return self._Description
@@ -10435,7 +10444,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10435
10444
 
10436
10445
  @property
10437
10446
  def TraceDuration(self):
10438
- r"""Trace 数据保存时长(单位:天)
10447
+ r"""<p>Trace 数据保存时长(单位:天)</p>
10439
10448
  :rtype: int
10440
10449
  """
10441
10450
  return self._TraceDuration
@@ -10446,7 +10455,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10446
10455
 
10447
10456
  @property
10448
10457
  def OpenBilling(self):
10449
- r"""是否开启计费
10458
+ r"""<p>是否开启计费</p>
10450
10459
  :rtype: bool
10451
10460
  """
10452
10461
  return self._OpenBilling
@@ -10457,7 +10466,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10457
10466
 
10458
10467
  @property
10459
10468
  def SpanDailyCounters(self):
10460
- r"""业务系统上报额度
10469
+ r"""<p>业务系统上报额度</p>
10461
10470
  :rtype: int
10462
10471
  """
10463
10472
  return self._SpanDailyCounters
@@ -10468,7 +10477,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10468
10477
 
10469
10478
  @property
10470
10479
  def ErrRateThreshold(self):
10471
- r"""错误率警示线,当应用的平均错误率超出该阈值时,系统会给出异常提示。
10480
+ r"""<p>错误率警示线,当应用的平均错误率超出该阈值时,系统会给出异常提示。</p>
10472
10481
  :rtype: int
10473
10482
  """
10474
10483
  return self._ErrRateThreshold
@@ -10479,7 +10488,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10479
10488
 
10480
10489
  @property
10481
10490
  def SampleRate(self):
10482
- r"""采样率(单位:%)
10491
+ r"""<p>采样率(单位:%)</p>
10483
10492
  :rtype: int
10484
10493
  """
10485
10494
  return self._SampleRate
@@ -10490,7 +10499,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10490
10499
 
10491
10500
  @property
10492
10501
  def ErrorSample(self):
10493
- r"""是否开启错误采样(0=关, 1=开)
10502
+ r"""<p>是否开启错误采样(0=关, 1=开)</p>
10494
10503
  :rtype: int
10495
10504
  """
10496
10505
  return self._ErrorSample
@@ -10501,7 +10510,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10501
10510
 
10502
10511
  @property
10503
10512
  def SlowRequestSavedThreshold(self):
10504
- r"""采样慢调用保存阈值(单位:ms
10513
+ r"""<p>采样慢调用保存阈值(单位:ms)</p>
10505
10514
  :rtype: int
10506
10515
  """
10507
10516
  return self._SlowRequestSavedThreshold
@@ -10512,7 +10521,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10512
10521
 
10513
10522
  @property
10514
10523
  def IsRelatedLog(self):
10515
- r"""是否开启日志功能(0=关, 1=开)
10524
+ r"""<p>是否开启日志功能(0=关, 1=开)</p>
10516
10525
  :rtype: int
10517
10526
  """
10518
10527
  return self._IsRelatedLog
@@ -10523,7 +10532,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10523
10532
 
10524
10533
  @property
10525
10534
  def LogRegion(self):
10526
- r"""日志地域,开启日志功能后才会生效
10535
+ r"""<p>日志地域,开启日志功能后才会生效</p>
10527
10536
  :rtype: str
10528
10537
  """
10529
10538
  return self._LogRegion
@@ -10534,7 +10543,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10534
10543
 
10535
10544
  @property
10536
10545
  def LogTopicID(self):
10537
- r"""CLS 日志主题 ID,开启日志功能后才会生效
10546
+ r"""<p>CLS 日志主题 ID,开启日志功能后才会生效</p>
10538
10547
  :rtype: str
10539
10548
  """
10540
10549
  return self._LogTopicID
@@ -10545,7 +10554,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10545
10554
 
10546
10555
  @property
10547
10556
  def LogSet(self):
10548
- r"""日志集,开启日志功能后才会生效
10557
+ r"""<p>日志集,开启日志功能后才会生效</p>
10549
10558
  :rtype: str
10550
10559
  """
10551
10560
  return self._LogSet
@@ -10556,7 +10565,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10556
10565
 
10557
10566
  @property
10558
10567
  def LogSource(self):
10559
- r"""日志源,开启日志功能后才会生效
10568
+ r"""<p>日志源,开启日志功能后才会生效</p>
10560
10569
  :rtype: str
10561
10570
  """
10562
10571
  return self._LogSource
@@ -10567,7 +10576,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10567
10576
 
10568
10577
  @property
10569
10578
  def CustomShowTags(self):
10570
- r"""用户自定义展示标签列表
10579
+ r"""<p>用户自定义展示标签列表</p>
10571
10580
  :rtype: list of str
10572
10581
  """
10573
10582
  return self._CustomShowTags
@@ -10578,7 +10587,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10578
10587
 
10579
10588
  @property
10580
10589
  def PayMode(self):
10581
- r"""修改计费模式(1为预付费,0为按量付费)
10590
+ r"""<p>修改计费模式(1为预付费,0为按量付费)</p>
10582
10591
  :rtype: int
10583
10592
  """
10584
10593
  return self._PayMode
@@ -10589,7 +10598,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10589
10598
 
10590
10599
  @property
10591
10600
  def ResponseDurationWarningThreshold(self):
10592
- r"""响应时间警示线
10601
+ r"""<p>响应时间警示线</p>
10593
10602
  :rtype: int
10594
10603
  """
10595
10604
  return self._ResponseDurationWarningThreshold
@@ -10600,7 +10609,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10600
10609
 
10601
10610
  @property
10602
10611
  def Free(self):
10603
- r"""是否免费(0=付费版;1=TSF 受限免费版;2=免费版),默认0
10612
+ r"""<p>是否免费(0=付费版;1=TSF 受限免费版;2=免费版),默认0</p>
10604
10613
  :rtype: int
10605
10614
  """
10606
10615
  return self._Free
@@ -10611,7 +10620,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10611
10620
 
10612
10621
  @property
10613
10622
  def IsRelatedDashboard(self):
10614
- r"""是否关联 Dashboard(0=关,1=开)
10623
+ r"""<p>是否关联 Dashboard(0=关,1=开)</p>
10615
10624
  :rtype: int
10616
10625
  """
10617
10626
  return self._IsRelatedDashboard
@@ -10622,7 +10631,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10622
10631
 
10623
10632
  @property
10624
10633
  def DashboardTopicID(self):
10625
- r"""关联的 Dashboard ID,开启关联 Dashboard 后才会生效
10634
+ r"""<p>关联的 Dashboard ID,开启关联 Dashboard 后才会生效</p>
10626
10635
  :rtype: str
10627
10636
  """
10628
10637
  return self._DashboardTopicID
@@ -10633,7 +10642,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10633
10642
 
10634
10643
  @property
10635
10644
  def IsSqlInjectionAnalysis(self):
10636
- r"""是否开启 SQL 注入检测(0=关,1=开)
10645
+ r"""<p>是否开启 SQL 注入检测(0=关,1=开)</p>
10637
10646
  :rtype: int
10638
10647
  """
10639
10648
  return self._IsSqlInjectionAnalysis
@@ -10644,7 +10653,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10644
10653
 
10645
10654
  @property
10646
10655
  def IsInstrumentationVulnerabilityScan(self):
10647
- r"""是否开启组件漏洞检测(0=关,1=开)
10656
+ r"""<p>是否开启组件漏洞检测(0=关,1=开)</p>
10648
10657
  :rtype: int
10649
10658
  """
10650
10659
  return self._IsInstrumentationVulnerabilityScan
@@ -10655,7 +10664,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10655
10664
 
10656
10665
  @property
10657
10666
  def IsRemoteCommandExecutionAnalysis(self):
10658
- r"""是否开启远程命令攻击检测
10667
+ r"""<p>是否开启远程命令攻击检测</p>
10659
10668
  :rtype: int
10660
10669
  """
10661
10670
  return self._IsRemoteCommandExecutionAnalysis
@@ -10666,7 +10675,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10666
10675
 
10667
10676
  @property
10668
10677
  def IsMemoryHijackingAnalysis(self):
10669
- r"""是否开启内存马检测
10678
+ r"""<p>是否开启内存马检测</p>
10670
10679
  :rtype: int
10671
10680
  """
10672
10681
  return self._IsMemoryHijackingAnalysis
@@ -10677,7 +10686,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10677
10686
 
10678
10687
  @property
10679
10688
  def LogIndexType(self):
10680
- r"""CLS索引类型(0=全文索引,1=键值索引)
10689
+ r"""<p>CLS索引类型(0=全文索引,1=键值索引)</p>
10681
10690
  :rtype: int
10682
10691
  """
10683
10692
  return self._LogIndexType
@@ -10688,7 +10697,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10688
10697
 
10689
10698
  @property
10690
10699
  def LogTraceIdKey(self):
10691
- r"""traceId的索引key: 当CLS索引类型为键值索引时生效
10700
+ r"""<p>traceId的索引key: 当CLS索引类型为键值索引时生效</p>
10692
10701
  :rtype: str
10693
10702
  """
10694
10703
  return self._LogTraceIdKey
@@ -10699,7 +10708,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10699
10708
 
10700
10709
  @property
10701
10710
  def IsDeleteAnyFileAnalysis(self):
10702
- r"""是否开启删除任意文件检测(0-关闭,1-开启)
10711
+ r"""<p>是否开启删除任意文件检测(0-关闭,1-开启)</p>
10703
10712
  :rtype: int
10704
10713
  """
10705
10714
  return self._IsDeleteAnyFileAnalysis
@@ -10710,7 +10719,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10710
10719
 
10711
10720
  @property
10712
10721
  def IsReadAnyFileAnalysis(self):
10713
- r"""是否开启读取任意文件检测(0-关闭,1-开启)
10722
+ r"""<p>是否开启读取任意文件检测(0-关闭,1-开启)</p>
10714
10723
  :rtype: int
10715
10724
  """
10716
10725
  return self._IsReadAnyFileAnalysis
@@ -10721,7 +10730,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10721
10730
 
10722
10731
  @property
10723
10732
  def IsUploadAnyFileAnalysis(self):
10724
- r"""是否开启上传任意文件检测(0-关闭,1-开启)
10733
+ r"""<p>是否开启上传任意文件检测(0-关闭,1-开启)</p>
10725
10734
  :rtype: int
10726
10735
  """
10727
10736
  return self._IsUploadAnyFileAnalysis
@@ -10732,7 +10741,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10732
10741
 
10733
10742
  @property
10734
10743
  def IsIncludeAnyFileAnalysis(self):
10735
- r"""是否开启包含任意文件检测(0-关闭,1-开启)
10744
+ r"""<p>是否开启包含任意文件检测(0-关闭,1-开启)</p>
10736
10745
  :rtype: int
10737
10746
  """
10738
10747
  return self._IsIncludeAnyFileAnalysis
@@ -10743,7 +10752,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10743
10752
 
10744
10753
  @property
10745
10754
  def IsDirectoryTraversalAnalysis(self):
10746
- r"""是否开启目录遍历检测(0-关闭,1-开启)
10755
+ r"""<p>是否开启目录遍历检测(0-关闭,1-开启)</p>
10747
10756
  :rtype: int
10748
10757
  """
10749
10758
  return self._IsDirectoryTraversalAnalysis
@@ -10754,7 +10763,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10754
10763
 
10755
10764
  @property
10756
10765
  def IsTemplateEngineInjectionAnalysis(self):
10757
- r"""是否开启模板引擎注入检测(0-关闭,1-开启)
10766
+ r"""<p>是否开启模板引擎注入检测(0-关闭,1-开启)</p>
10758
10767
  :rtype: int
10759
10768
  """
10760
10769
  return self._IsTemplateEngineInjectionAnalysis
@@ -10765,7 +10774,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10765
10774
 
10766
10775
  @property
10767
10776
  def IsScriptEngineInjectionAnalysis(self):
10768
- r"""是否开启脚本引擎注入检测(0-关闭,1-开启)
10777
+ r"""<p>是否开启脚本引擎注入检测(0-关闭,1-开启)</p>
10769
10778
  :rtype: int
10770
10779
  """
10771
10780
  return self._IsScriptEngineInjectionAnalysis
@@ -10776,7 +10785,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10776
10785
 
10777
10786
  @property
10778
10787
  def IsExpressionInjectionAnalysis(self):
10779
- r"""是否开启表达式注入检测(0-关闭,1-开启)
10788
+ r"""<p>是否开启表达式注入检测(0-关闭,1-开启)</p>
10780
10789
  :rtype: int
10781
10790
  """
10782
10791
  return self._IsExpressionInjectionAnalysis
@@ -10787,7 +10796,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10787
10796
 
10788
10797
  @property
10789
10798
  def IsJNDIInjectionAnalysis(self):
10790
- r"""是否开启JNDI注入检测(0-关闭,1-开启)
10799
+ r"""<p>是否开启JNDI注入检测(0-关闭,1-开启)</p>
10791
10800
  :rtype: int
10792
10801
  """
10793
10802
  return self._IsJNDIInjectionAnalysis
@@ -10798,7 +10807,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10798
10807
 
10799
10808
  @property
10800
10809
  def IsJNIInjectionAnalysis(self):
10801
- r"""是否开启JNI注入检测(0-关闭,1-开启)
10810
+ r"""<p>是否开启JNI注入检测(0-关闭,1-开启)</p>
10802
10811
  :rtype: int
10803
10812
  """
10804
10813
  return self._IsJNIInjectionAnalysis
@@ -10809,7 +10818,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10809
10818
 
10810
10819
  @property
10811
10820
  def IsWebshellBackdoorAnalysis(self):
10812
- r"""是否开启Webshell后门检测(0-关闭,1-开启)
10821
+ r"""<p>是否开启Webshell后门检测(0-关闭,1-开启)</p>
10813
10822
  :rtype: int
10814
10823
  """
10815
10824
  return self._IsWebshellBackdoorAnalysis
@@ -10820,7 +10829,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10820
10829
 
10821
10830
  @property
10822
10831
  def IsDeserializationAnalysis(self):
10823
- r"""是否开启反序列化检测(0-关闭,1-开启)
10832
+ r"""<p>是否开启反序列化检测(0-关闭,1-开启)</p>
10824
10833
  :rtype: int
10825
10834
  """
10826
10835
  return self._IsDeserializationAnalysis
@@ -10831,7 +10840,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10831
10840
 
10832
10841
  @property
10833
10842
  def UrlLongSegmentThreshold(self):
10834
- r"""URL长分段收敛阈值
10843
+ r"""<p>URL长分段收敛阈值</p>
10835
10844
  :rtype: int
10836
10845
  """
10837
10846
  return self._UrlLongSegmentThreshold
@@ -10842,7 +10851,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10842
10851
 
10843
10852
  @property
10844
10853
  def UrlNumberSegmentThreshold(self):
10845
- r"""URL数字分段收敛阈值
10854
+ r"""<p>URL数字分段收敛阈值</p>
10846
10855
  :rtype: int
10847
10856
  """
10848
10857
  return self._UrlNumberSegmentThreshold
@@ -10853,7 +10862,7 @@ class ModifyApmInstanceRequest(AbstractModel):
10853
10862
 
10854
10863
  @property
10855
10864
  def LogSpanIdKey(self):
10856
- r"""spanId的索引key: 当CLS索引类型为键值索引时生效
10865
+ r"""<p>spanId的索引key: 当CLS索引类型为键值索引时生效</p>
10857
10866
  :rtype: str
10858
10867
  """
10859
10868
  return self._LogSpanIdKey
@@ -10862,6 +10871,39 @@ class ModifyApmInstanceRequest(AbstractModel):
10862
10871
  def LogSpanIdKey(self, LogSpanIdKey):
10863
10872
  self._LogSpanIdKey = LogSpanIdKey
10864
10873
 
10874
+ @property
10875
+ def EnableHeadSampler(self):
10876
+ r"""<p>是否开启探针头采样</p>
10877
+ :rtype: bool
10878
+ """
10879
+ return self._EnableHeadSampler
10880
+
10881
+ @EnableHeadSampler.setter
10882
+ def EnableHeadSampler(self, EnableHeadSampler):
10883
+ self._EnableHeadSampler = EnableHeadSampler
10884
+
10885
+ @property
10886
+ def HeadSamplerType(self):
10887
+ r"""<p>头采类型</p><p>枚举值:</p><ul><li>parentbased_traceidratio: 默认</li></ul>
10888
+ :rtype: str
10889
+ """
10890
+ return self._HeadSamplerType
10891
+
10892
+ @HeadSamplerType.setter
10893
+ def HeadSamplerType(self, HeadSamplerType):
10894
+ self._HeadSamplerType = HeadSamplerType
10895
+
10896
+ @property
10897
+ def HeadSamplerArg(self):
10898
+ r"""<p>头采采样率</p><p>取值范围:[0, 100]</p>
10899
+ :rtype: int
10900
+ """
10901
+ return self._HeadSamplerArg
10902
+
10903
+ @HeadSamplerArg.setter
10904
+ def HeadSamplerArg(self, HeadSamplerArg):
10905
+ self._HeadSamplerArg = HeadSamplerArg
10906
+
10865
10907
 
10866
10908
  def _deserialize(self, params):
10867
10909
  self._InstanceId = params.get("InstanceId")
@@ -10912,6 +10954,9 @@ class ModifyApmInstanceRequest(AbstractModel):
10912
10954
  self._UrlLongSegmentThreshold = params.get("UrlLongSegmentThreshold")
10913
10955
  self._UrlNumberSegmentThreshold = params.get("UrlNumberSegmentThreshold")
10914
10956
  self._LogSpanIdKey = params.get("LogSpanIdKey")
10957
+ self._EnableHeadSampler = params.get("EnableHeadSampler")
10958
+ self._HeadSamplerType = params.get("HeadSamplerType")
10959
+ self._HeadSamplerArg = params.get("HeadSamplerArg")
10915
10960
  memeber_set = set(params.keys())
10916
10961
  for name, value in vars(self).items():
10917
10962
  property_name = name[1:]