tencentcloud-sdk-python 3.0.1292__py2.py3-none-any.whl → 3.0.1293__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 (38) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/apm/v20210622/apm_client.py +1 -1
  3. tencentcloud/apm/v20210622/errorcodes.py +3 -3
  4. tencentcloud/apm/v20210622/models.py +119 -271
  5. tencentcloud/bh/v20230418/models.py +15 -0
  6. tencentcloud/cfs/v20190719/errorcodes.py +6 -3
  7. tencentcloud/ckafka/v20190819/models.py +45 -0
  8. tencentcloud/clb/v20180317/models.py +32 -0
  9. tencentcloud/cls/v20201016/cls_client.py +92 -0
  10. tencentcloud/cls/v20201016/models.py +740 -23
  11. tencentcloud/cwp/v20180228/models.py +2 -2
  12. tencentcloud/dnspod/v20210323/models.py +37 -37
  13. tencentcloud/ess/v20201111/models.py +49 -2
  14. tencentcloud/essbasic/v20210526/models.py +152 -0
  15. tencentcloud/mna/v20210119/models.py +2 -2
  16. tencentcloud/mps/v20190612/models.py +15 -0
  17. tencentcloud/ocr/v20181119/models.py +661 -8
  18. tencentcloud/ocr/v20181119/ocr_client.py +49 -3
  19. tencentcloud/sqlserver/v20180328/models.py +73 -2
  20. tencentcloud/tdmq/v20200217/models.py +543 -0
  21. tencentcloud/tdmq/v20200217/tdmq_client.py +69 -0
  22. tencentcloud/teo/v20220901/models.py +2 -0
  23. tencentcloud/teo/v20220901/teo_client.py +1 -1
  24. tencentcloud/thpc/v20211109/models.py +10 -12
  25. tencentcloud/thpc/v20220401/models.py +30 -36
  26. tencentcloud/thpc/v20230321/models.py +12 -14
  27. tencentcloud/trocket/v20230308/models.py +396 -0
  28. tencentcloud/trocket/v20230308/trocket_client.py +23 -0
  29. tencentcloud/trtc/v20190722/models.py +17 -0
  30. tencentcloud/tse/v20201207/models.py +32 -0
  31. tencentcloud/vpc/v20170312/errorcodes.py +6 -0
  32. tencentcloud/vpc/v20170312/models.py +66 -88
  33. tencentcloud/waf/v20180125/waf_client.py +3 -1
  34. {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/METADATA +1 -1
  35. {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/RECORD +38 -38
  36. {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/LICENSE +0 -0
  37. {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/WHEEL +0 -0
  38. {tencentcloud_sdk_python-3.0.1292.dist-info → tencentcloud_sdk_python-3.0.1293.dist-info}/top_level.txt +0 -0
@@ -19,17 +19,15 @@ from tencentcloud.common.abstract_model import AbstractModel
19
19
 
20
20
 
21
21
  class APMKV(AbstractModel):
22
- """APM浮点数类型键值对
22
+ """APM 浮点数类型键值对
23
23
 
24
24
  """
25
25
 
26
26
  def __init__(self):
27
27
  r"""
28
- :param _Key: Key值定义
29
- 注意:此字段可能返回 null,表示取不到有效值。
28
+ :param _Key: Key 值定义
30
29
  :type Key: str
31
- :param _Value: Value值定义
32
- 注意:此字段可能返回 null,表示取不到有效值。
30
+ :param _Value: Value 值定义
33
31
  :type Value: float
34
32
  """
35
33
  self._Key = None
@@ -37,8 +35,7 @@ class APMKV(AbstractModel):
37
35
 
38
36
  @property
39
37
  def Key(self):
40
- """Key值定义
41
- 注意:此字段可能返回 null,表示取不到有效值。
38
+ """Key 值定义
42
39
  :rtype: str
43
40
  """
44
41
  return self._Key
@@ -49,8 +46,7 @@ class APMKV(AbstractModel):
49
46
 
50
47
  @property
51
48
  def Value(self):
52
- """Value值定义
53
- 注意:此字段可能返回 null,表示取不到有效值。
49
+ """Value 值定义
54
50
  :rtype: float
55
51
  """
56
52
  return self._Value
@@ -74,17 +70,15 @@ class APMKV(AbstractModel):
74
70
 
75
71
 
76
72
  class APMKVItem(AbstractModel):
77
- """Apm通用KV结构
73
+ """APM 通用 KV 结构
78
74
 
79
75
  """
80
76
 
81
77
  def __init__(self):
82
78
  r"""
83
- :param _Key: Key值定义
84
- 注意:此字段可能返回 null,表示取不到有效值。
79
+ :param _Key: Key 值定义
85
80
  :type Key: str
86
- :param _Value: Value值定义
87
- 注意:此字段可能返回 null,表示取不到有效值。
81
+ :param _Value: Value 值定义
88
82
  :type Value: str
89
83
  """
90
84
  self._Key = None
@@ -92,8 +86,7 @@ class APMKVItem(AbstractModel):
92
86
 
93
87
  @property
94
88
  def Key(self):
95
- """Key值定义
96
- 注意:此字段可能返回 null,表示取不到有效值。
89
+ """Key 值定义
97
90
  :rtype: str
98
91
  """
99
92
  return self._Key
@@ -104,8 +97,7 @@ class APMKVItem(AbstractModel):
104
97
 
105
98
  @property
106
99
  def Value(self):
107
- """Value值定义
108
- 注意:此字段可能返回 null,表示取不到有效值。
100
+ """Value 值定义
109
101
  :rtype: str
110
102
  """
111
103
  return self._Value
@@ -129,29 +121,23 @@ class APMKVItem(AbstractModel):
129
121
 
130
122
 
131
123
  class ApmAgentInfo(AbstractModel):
132
- """apm Agent信息
124
+ """APM Agent 信息
133
125
 
134
126
  """
135
127
 
136
128
  def __init__(self):
137
129
  r"""
138
- :param _AgentDownloadURL: Agent下载地址
139
- 注意:此字段可能返回 null,表示取不到有效值。
130
+ :param _AgentDownloadURL: Agent 下载地址
140
131
  :type AgentDownloadURL: str
141
- :param _CollectorURL: Collector上报地址
142
- 注意:此字段可能返回 null,表示取不到有效值。
132
+ :param _CollectorURL: Collector 上报地址
143
133
  :type CollectorURL: str
144
- :param _Token: Token信息
145
- 注意:此字段可能返回 null,表示取不到有效值。
134
+ :param _Token: Token 信息
146
135
  :type Token: str
147
136
  :param _PublicCollectorURL: 外网上报地址
148
- 注意:此字段可能返回 null,表示取不到有效值。
149
137
  :type PublicCollectorURL: str
150
- :param _InnerCollectorURL: 自研VPC上报地址
151
- 注意:此字段可能返回 null,表示取不到有效值。
138
+ :param _InnerCollectorURL: 自研 VPC 上报地址
152
139
  :type InnerCollectorURL: str
153
- :param _PrivateLinkCollectorURL: 内网上报地址(Private Link上报地址)
154
- 注意:此字段可能返回 null,表示取不到有效值。
140
+ :param _PrivateLinkCollectorURL: 内网上报地址( Private Link 上报地址)
155
141
  :type PrivateLinkCollectorURL: str
156
142
  """
157
143
  self._AgentDownloadURL = None
@@ -163,8 +149,7 @@ class ApmAgentInfo(AbstractModel):
163
149
 
164
150
  @property
165
151
  def AgentDownloadURL(self):
166
- """Agent下载地址
167
- 注意:此字段可能返回 null,表示取不到有效值。
152
+ """Agent 下载地址
168
153
  :rtype: str
169
154
  """
170
155
  return self._AgentDownloadURL
@@ -175,8 +160,7 @@ class ApmAgentInfo(AbstractModel):
175
160
 
176
161
  @property
177
162
  def CollectorURL(self):
178
- """Collector上报地址
179
- 注意:此字段可能返回 null,表示取不到有效值。
163
+ """Collector 上报地址
180
164
  :rtype: str
181
165
  """
182
166
  return self._CollectorURL
@@ -187,8 +171,7 @@ class ApmAgentInfo(AbstractModel):
187
171
 
188
172
  @property
189
173
  def Token(self):
190
- """Token信息
191
- 注意:此字段可能返回 null,表示取不到有效值。
174
+ """Token 信息
192
175
  :rtype: str
193
176
  """
194
177
  return self._Token
@@ -200,7 +183,6 @@ class ApmAgentInfo(AbstractModel):
200
183
  @property
201
184
  def PublicCollectorURL(self):
202
185
  """外网上报地址
203
- 注意:此字段可能返回 null,表示取不到有效值。
204
186
  :rtype: str
205
187
  """
206
188
  return self._PublicCollectorURL
@@ -211,8 +193,7 @@ class ApmAgentInfo(AbstractModel):
211
193
 
212
194
  @property
213
195
  def InnerCollectorURL(self):
214
- """自研VPC上报地址
215
- 注意:此字段可能返回 null,表示取不到有效值。
196
+ """自研 VPC 上报地址
216
197
  :rtype: str
217
198
  """
218
199
  return self._InnerCollectorURL
@@ -223,8 +204,7 @@ class ApmAgentInfo(AbstractModel):
223
204
 
224
205
  @property
225
206
  def PrivateLinkCollectorURL(self):
226
- """内网上报地址(Private Link上报地址)
227
- 注意:此字段可能返回 null,表示取不到有效值。
207
+ """内网上报地址( Private Link 上报地址)
228
208
  :rtype: str
229
209
  """
230
210
  return self._PrivateLinkCollectorURL
@@ -258,7 +238,7 @@ class ApmApplicationConfigView(AbstractModel):
258
238
 
259
239
  def __init__(self):
260
240
  r"""
261
- :param _InstanceKey: 业务系统ID
241
+ :param _InstanceKey: 业务系统 ID
262
242
  :type InstanceKey: str
263
243
  :param _ServiceName: 应用名
264
244
  :type ServiceName: str
@@ -266,23 +246,21 @@ class ApmApplicationConfigView(AbstractModel):
266
246
  :type OperationNameFilter: str
267
247
  :param _ExceptionFilter: 错误类型过滤
268
248
  :type ExceptionFilter: str
269
- :param _ErrorCodeFilter: HTTP状态码过滤
249
+ :param _ErrorCodeFilter: HTTP 状态码过滤
270
250
  :type ErrorCodeFilter: str
271
251
  :param _EventEnable: 应用诊断开关(已废弃)
272
- 注意:此字段可能返回 null,表示取不到有效值。
273
252
  :type EventEnable: bool
274
- :param _UrlConvergenceSwitch: URL收敛开关 0 关 1 开
253
+ :param _UrlConvergenceSwitch: URL 收敛开关 0 关 1 开
275
254
  :type UrlConvergenceSwitch: int
276
- :param _UrlConvergenceThreshold: URL收敛阈值
255
+ :param _UrlConvergenceThreshold: URL 收敛阈值
277
256
  :type UrlConvergenceThreshold: int
278
- :param _UrlConvergence: URL收敛规则正则
257
+ :param _UrlConvergence: URL 收敛规则正则
279
258
  :type UrlConvergence: str
280
- :param _UrlExclude: URL排除规则正则
259
+ :param _UrlExclude: URL 排除规则正则
281
260
  :type UrlExclude: str
282
261
  :param _IsRelatedLog: 是否开启日志 0 关 1 开
283
262
  :type IsRelatedLog: int
284
263
  :param _LogSource: 日志源
285
- 注意:此字段可能返回 null,表示取不到有效值。
286
264
  :type LogSource: str
287
265
  :param _LogSet: 日志集
288
266
  :type LogSet: str
@@ -295,7 +273,6 @@ class ApmApplicationConfigView(AbstractModel):
295
273
  :param _AgentEnable: 探针总开关
296
274
  :type AgentEnable: bool
297
275
  :param _InstrumentList: 组件列表开关(已废弃)
298
- 注意:此字段可能返回 null,表示取不到有效值。
299
276
  :type InstrumentList: list of Instrument
300
277
  :param _TraceSquash: 链路压缩开关(已废弃)
301
278
  :type TraceSquash: bool
@@ -322,7 +299,7 @@ class ApmApplicationConfigView(AbstractModel):
322
299
 
323
300
  @property
324
301
  def InstanceKey(self):
325
- """业务系统ID
302
+ """业务系统 ID
326
303
  :rtype: str
327
304
  """
328
305
  return self._InstanceKey
@@ -366,7 +343,7 @@ class ApmApplicationConfigView(AbstractModel):
366
343
 
367
344
  @property
368
345
  def ErrorCodeFilter(self):
369
- """HTTP状态码过滤
346
+ """HTTP 状态码过滤
370
347
  :rtype: str
371
348
  """
372
349
  return self._ErrorCodeFilter
@@ -378,7 +355,6 @@ class ApmApplicationConfigView(AbstractModel):
378
355
  @property
379
356
  def EventEnable(self):
380
357
  """应用诊断开关(已废弃)
381
- 注意:此字段可能返回 null,表示取不到有效值。
382
358
  :rtype: bool
383
359
  """
384
360
  return self._EventEnable
@@ -389,7 +365,7 @@ class ApmApplicationConfigView(AbstractModel):
389
365
 
390
366
  @property
391
367
  def UrlConvergenceSwitch(self):
392
- """URL收敛开关 0 关 1 开
368
+ """URL 收敛开关 0 关 1 开
393
369
  :rtype: int
394
370
  """
395
371
  return self._UrlConvergenceSwitch
@@ -400,7 +376,7 @@ class ApmApplicationConfigView(AbstractModel):
400
376
 
401
377
  @property
402
378
  def UrlConvergenceThreshold(self):
403
- """URL收敛阈值
379
+ """URL 收敛阈值
404
380
  :rtype: int
405
381
  """
406
382
  return self._UrlConvergenceThreshold
@@ -411,7 +387,7 @@ class ApmApplicationConfigView(AbstractModel):
411
387
 
412
388
  @property
413
389
  def UrlConvergence(self):
414
- """URL收敛规则正则
390
+ """URL 收敛规则正则
415
391
  :rtype: str
416
392
  """
417
393
  return self._UrlConvergence
@@ -422,7 +398,7 @@ class ApmApplicationConfigView(AbstractModel):
422
398
 
423
399
  @property
424
400
  def UrlExclude(self):
425
- """URL排除规则正则
401
+ """URL 排除规则正则
426
402
  :rtype: str
427
403
  """
428
404
  return self._UrlExclude
@@ -445,7 +421,6 @@ class ApmApplicationConfigView(AbstractModel):
445
421
  @property
446
422
  def LogSource(self):
447
423
  """日志源
448
- 注意:此字段可能返回 null,表示取不到有效值。
449
424
  :rtype: str
450
425
  """
451
426
  return self._LogSource
@@ -512,7 +487,6 @@ class ApmApplicationConfigView(AbstractModel):
512
487
  @property
513
488
  def InstrumentList(self):
514
489
  """组件列表开关(已废弃)
515
- 注意:此字段可能返回 null,表示取不到有效值。
516
490
  :rtype: list of Instrument
517
491
  """
518
492
  return self._InstrumentList
@@ -576,16 +550,13 @@ class ApmField(AbstractModel):
576
550
  def __init__(self):
577
551
  r"""
578
552
  :param _CompareVal: 昨日同比指标值,已弃用,不建议使用
579
- 注意:此字段可能返回 null,表示取不到有效值。
580
553
  :type CompareVal: str
581
554
  :param _CompareVals: Compare值结果数组,推荐使用
582
555
  注意:此字段可能返回 null,表示取不到有效值。
583
556
  :type CompareVals: list of APMKVItem
584
557
  :param _Value: 指标值
585
- 注意:此字段可能返回 null,表示取不到有效值。
586
558
  :type Value: float
587
559
  :param _Unit: 指标所对应的单位
588
- 注意:此字段可能返回 null,表示取不到有效值。
589
560
  :type Unit: str
590
561
  :param _Key: 请求数
591
562
  :type Key: str
@@ -603,7 +574,6 @@ class ApmField(AbstractModel):
603
574
  @property
604
575
  def CompareVal(self):
605
576
  """昨日同比指标值,已弃用,不建议使用
606
- 注意:此字段可能返回 null,表示取不到有效值。
607
577
  :rtype: str
608
578
  """
609
579
  return self._CompareVal
@@ -627,7 +597,6 @@ class ApmField(AbstractModel):
627
597
  @property
628
598
  def Value(self):
629
599
  """指标值
630
- 注意:此字段可能返回 null,表示取不到有效值。
631
600
  :rtype: float
632
601
  """
633
602
  return self._Value
@@ -639,7 +608,6 @@ class ApmField(AbstractModel):
639
608
  @property
640
609
  def Unit(self):
641
610
  """指标所对应的单位
642
- 注意:此字段可能返回 null,表示取不到有效值。
643
611
  :rtype: str
644
612
  """
645
613
  return self._Unit
@@ -700,119 +668,85 @@ class ApmField(AbstractModel):
700
668
 
701
669
 
702
670
  class ApmInstanceDetail(AbstractModel):
703
- """apm实例信息
671
+ """APM 业务系统信息
704
672
 
705
673
  """
706
674
 
707
675
  def __init__(self):
708
676
  r"""
709
- :param _AmountOfUsedStorage: 存储使用量(MB)
710
- 注意:此字段可能返回 null,表示取不到有效值。
677
+ :param _AmountOfUsedStorage: 存储使用量( MB )
711
678
  :type AmountOfUsedStorage: float
712
- :param _Name: 实例名
713
- 注意:此字段可能返回 null,表示取不到有效值。
679
+ :param _Name: 业务系统名
714
680
  :type Name: str
715
- :param _Tags: 实例所属tag列表
716
- 注意:此字段可能返回 null,表示取不到有效值。
681
+ :param _Tags: 业务系统所属 Tag 列表
717
682
  :type Tags: list of ApmTag
718
- :param _InstanceId: 实例ID
683
+ :param _InstanceId: 业务系统 ID
719
684
  :type InstanceId: str
720
- :param _CreateUin: 创建人Uin
721
- 注意:此字段可能返回 null,表示取不到有效值。
685
+ :param _CreateUin: 创建人 Uin
722
686
  :type CreateUin: str
723
- :param _ServiceCount: 该实例已上报的服务端应用数量
724
- 注意:此字段可能返回 null,表示取不到有效值。
687
+ :param _ServiceCount: 该业务系统已上报的服务端应用数量
725
688
  :type ServiceCount: int
726
- :param _CountOfReportSpanPerDay: 日均上报Span数
727
- 注意:此字段可能返回 null,表示取不到有效值。
689
+ :param _CountOfReportSpanPerDay: 日均上报 Span
728
690
  :type CountOfReportSpanPerDay: int
729
- :param _AppId: AppId信息
691
+ :param _AppId: AppID 信息
730
692
  :type AppId: int
731
- :param _TraceDuration: Trace数据保存时长
732
- 注意:此字段可能返回 null,表示取不到有效值。
693
+ :param _TraceDuration: Trace 数据保存时长
733
694
  :type TraceDuration: int
734
- :param _Description: 实例描述信息
735
- 注意:此字段可能返回 null,表示取不到有效值。
695
+ :param _Description: 业务系统描述信息
736
696
  :type Description: str
737
- :param _Status: 实例状态
738
- 注意:此字段可能返回 null,表示取不到有效值。
697
+ :param _Status: 业务系统状态
739
698
  :type Status: int
740
- :param _Region: 实例所属地域
741
- 注意:此字段可能返回 null,表示取不到有效值。
699
+ :param _Region: 业务系统所属地域
742
700
  :type Region: str
743
- :param _SpanDailyCounters: 实例上报额度
744
- 注意:此字段可能返回 null,表示取不到有效值。
701
+ :param _SpanDailyCounters: 业务系统上报额度
745
702
  :type SpanDailyCounters: int
746
- :param _BillingInstance: 实例是否开通计费
747
- 注意:此字段可能返回 null,表示取不到有效值。
703
+ :param _BillingInstance: 业务系统是否开通计费
748
704
  :type BillingInstance: int
749
705
  :param _ErrRateThreshold: 错误率阈值
750
- 注意:此字段可能返回 null,表示取不到有效值。
751
706
  :type ErrRateThreshold: int
752
707
  :param _SampleRate: 采样率阈值
753
- 注意:此字段可能返回 null,表示取不到有效值。
754
708
  :type SampleRate: int
755
709
  :param _ErrorSample: 是否开启错误采样 0 关 1 开
756
- 注意:此字段可能返回 null,表示取不到有效值。
757
710
  :type ErrorSample: int
758
711
  :param _SlowRequestSavedThreshold: 慢调用保存阈值
759
- 注意:此字段可能返回 null,表示取不到有效值。
760
712
  :type SlowRequestSavedThreshold: int
761
- :param _LogRegion: cls日志所在地域
762
- 注意:此字段可能返回 null,表示取不到有效值。
713
+ :param _LogRegion: CLS 日志所在地域
763
714
  :type LogRegion: str
764
715
  :param _LogSource: 日志来源
765
- 注意:此字段可能返回 null,表示取不到有效值。
766
716
  :type LogSource: str
767
717
  :param _IsRelatedLog: 日志功能开关 0 关 | 1 开
768
- 注意:此字段可能返回 null,表示取不到有效值。
769
718
  :type IsRelatedLog: int
770
719
  :param _LogTopicID: 日志主题ID
771
- 注意:此字段可能返回 null,表示取不到有效值。
772
720
  :type LogTopicID: str
773
721
  :param _ClientCount: 该实例已上报的客户端应用数量
774
- 注意:此字段可能返回 null,表示取不到有效值。
775
722
  :type ClientCount: int
776
723
  :param _TotalCount: 该实例已上报的总应用数量
777
- 注意:此字段可能返回 null,表示取不到有效值。
778
724
  :type TotalCount: int
779
- :param _LogSet: CLS日志集 | ES集群ID
780
- 注意:此字段可能返回 null,表示取不到有效值。
725
+ :param _LogSet: CLS 日志集 | ES 集群ID
781
726
  :type LogSet: str
782
- :param _MetricDuration: Metric数据保存时长
783
- 注意:此字段可能返回 null,表示取不到有效值。
727
+ :param _MetricDuration: Metric 数据保存时长
784
728
  :type MetricDuration: int
785
729
  :param _CustomShowTags: 用户自定义展示标签列表
786
- 注意:此字段可能返回 null,表示取不到有效值。
787
730
  :type CustomShowTags: list of str
788
- :param _PayMode: 实例计费模式
731
+ :param _PayMode: 业务系统计费模式
789
732
  1为预付费
790
733
  0为按量付费
791
- 注意:此字段可能返回 null,表示取不到有效值。
792
734
  :type PayMode: int
793
- :param _PayModeEffective: 实例计费模式是否生效
794
- 注意:此字段可能返回 null,表示取不到有效值。
735
+ :param _PayModeEffective: 业务系统计费模式是否生效
795
736
  :type PayModeEffective: bool
796
737
  :param _ResponseDurationWarningThreshold: 响应时间满意阈值
797
- 注意:此字段可能返回 null,表示取不到有效值。
798
738
  :type ResponseDurationWarningThreshold: int
799
739
  :param _Free: 是否免费(0=否,1=限额免费,2=完全免费),默认0
800
- 注意:此字段可能返回 null,表示取不到有效值。
801
740
  :type Free: int
802
- :param _DefaultTSF: 是否tsf默认业务系统(0=否,1-是)
803
- 注意:此字段可能返回 null,表示取不到有效值。
741
+ :param _DefaultTSF: 是否 tsf 默认业务系统(0=否,1-是)
804
742
  :type DefaultTSF: int
805
- :param _IsRelatedDashboard: 是否关联dashboard: 0 关 1 开
806
- 注意:此字段可能返回 null,表示取不到有效值。
743
+ :param _IsRelatedDashboard: 是否关联 Dashboard: 0 关 1 开
807
744
  :type IsRelatedDashboard: int
808
- :param _DashboardTopicID: dashboard ID
809
- 注意:此字段可能返回 null,表示取不到有效值。
745
+ :param _DashboardTopicID: Dashboard ID
810
746
  :type DashboardTopicID: str
811
747
  :param _IsInstrumentationVulnerabilityScan: 是否开启组件漏洞检测
812
- 注意:此字段可能返回 null,表示取不到有效值。
813
748
  :type IsInstrumentationVulnerabilityScan: int
814
- :param _IsSqlInjectionAnalysis: 是否开启SQL注入分析
815
- 注意:此字段可能返回 null,表示取不到有效值。
749
+ :param _IsSqlInjectionAnalysis: 是否开启 SQL 注入分析
816
750
  :type IsSqlInjectionAnalysis: int
817
751
  """
818
752
  self._AmountOfUsedStorage = None
@@ -854,8 +788,7 @@ class ApmInstanceDetail(AbstractModel):
854
788
 
855
789
  @property
856
790
  def AmountOfUsedStorage(self):
857
- """存储使用量(MB)
858
- 注意:此字段可能返回 null,表示取不到有效值。
791
+ """存储使用量( MB )
859
792
  :rtype: float
860
793
  """
861
794
  return self._AmountOfUsedStorage
@@ -866,8 +799,7 @@ class ApmInstanceDetail(AbstractModel):
866
799
 
867
800
  @property
868
801
  def Name(self):
869
- """实例名
870
- 注意:此字段可能返回 null,表示取不到有效值。
802
+ """业务系统名
871
803
  :rtype: str
872
804
  """
873
805
  return self._Name
@@ -878,8 +810,7 @@ class ApmInstanceDetail(AbstractModel):
878
810
 
879
811
  @property
880
812
  def Tags(self):
881
- """实例所属tag列表
882
- 注意:此字段可能返回 null,表示取不到有效值。
813
+ """业务系统所属 Tag 列表
883
814
  :rtype: list of ApmTag
884
815
  """
885
816
  return self._Tags
@@ -890,7 +821,7 @@ class ApmInstanceDetail(AbstractModel):
890
821
 
891
822
  @property
892
823
  def InstanceId(self):
893
- """实例ID
824
+ """业务系统 ID
894
825
  :rtype: str
895
826
  """
896
827
  return self._InstanceId
@@ -901,8 +832,7 @@ class ApmInstanceDetail(AbstractModel):
901
832
 
902
833
  @property
903
834
  def CreateUin(self):
904
- """创建人Uin
905
- 注意:此字段可能返回 null,表示取不到有效值。
835
+ """创建人 Uin
906
836
  :rtype: str
907
837
  """
908
838
  return self._CreateUin
@@ -913,8 +843,7 @@ class ApmInstanceDetail(AbstractModel):
913
843
 
914
844
  @property
915
845
  def ServiceCount(self):
916
- """该实例已上报的服务端应用数量
917
- 注意:此字段可能返回 null,表示取不到有效值。
846
+ """该业务系统已上报的服务端应用数量
918
847
  :rtype: int
919
848
  """
920
849
  return self._ServiceCount
@@ -925,8 +854,7 @@ class ApmInstanceDetail(AbstractModel):
925
854
 
926
855
  @property
927
856
  def CountOfReportSpanPerDay(self):
928
- """日均上报Span数
929
- 注意:此字段可能返回 null,表示取不到有效值。
857
+ """日均上报 Span
930
858
  :rtype: int
931
859
  """
932
860
  return self._CountOfReportSpanPerDay
@@ -937,7 +865,7 @@ class ApmInstanceDetail(AbstractModel):
937
865
 
938
866
  @property
939
867
  def AppId(self):
940
- """AppId信息
868
+ """AppID 信息
941
869
  :rtype: int
942
870
  """
943
871
  return self._AppId
@@ -948,8 +876,7 @@ class ApmInstanceDetail(AbstractModel):
948
876
 
949
877
  @property
950
878
  def TraceDuration(self):
951
- """Trace数据保存时长
952
- 注意:此字段可能返回 null,表示取不到有效值。
879
+ """Trace 数据保存时长
953
880
  :rtype: int
954
881
  """
955
882
  return self._TraceDuration
@@ -960,8 +887,7 @@ class ApmInstanceDetail(AbstractModel):
960
887
 
961
888
  @property
962
889
  def Description(self):
963
- """实例描述信息
964
- 注意:此字段可能返回 null,表示取不到有效值。
890
+ """业务系统描述信息
965
891
  :rtype: str
966
892
  """
967
893
  return self._Description
@@ -972,8 +898,7 @@ class ApmInstanceDetail(AbstractModel):
972
898
 
973
899
  @property
974
900
  def Status(self):
975
- """实例状态
976
- 注意:此字段可能返回 null,表示取不到有效值。
901
+ """业务系统状态
977
902
  :rtype: int
978
903
  """
979
904
  return self._Status
@@ -984,8 +909,7 @@ class ApmInstanceDetail(AbstractModel):
984
909
 
985
910
  @property
986
911
  def Region(self):
987
- """实例所属地域
988
- 注意:此字段可能返回 null,表示取不到有效值。
912
+ """业务系统所属地域
989
913
  :rtype: str
990
914
  """
991
915
  return self._Region
@@ -996,8 +920,7 @@ class ApmInstanceDetail(AbstractModel):
996
920
 
997
921
  @property
998
922
  def SpanDailyCounters(self):
999
- """实例上报额度
1000
- 注意:此字段可能返回 null,表示取不到有效值。
923
+ """业务系统上报额度
1001
924
  :rtype: int
1002
925
  """
1003
926
  return self._SpanDailyCounters
@@ -1008,8 +931,7 @@ class ApmInstanceDetail(AbstractModel):
1008
931
 
1009
932
  @property
1010
933
  def BillingInstance(self):
1011
- """实例是否开通计费
1012
- 注意:此字段可能返回 null,表示取不到有效值。
934
+ """业务系统是否开通计费
1013
935
  :rtype: int
1014
936
  """
1015
937
  return self._BillingInstance
@@ -1021,7 +943,6 @@ class ApmInstanceDetail(AbstractModel):
1021
943
  @property
1022
944
  def ErrRateThreshold(self):
1023
945
  """错误率阈值
1024
- 注意:此字段可能返回 null,表示取不到有效值。
1025
946
  :rtype: int
1026
947
  """
1027
948
  return self._ErrRateThreshold
@@ -1033,7 +954,6 @@ class ApmInstanceDetail(AbstractModel):
1033
954
  @property
1034
955
  def SampleRate(self):
1035
956
  """采样率阈值
1036
- 注意:此字段可能返回 null,表示取不到有效值。
1037
957
  :rtype: int
1038
958
  """
1039
959
  return self._SampleRate
@@ -1045,7 +965,6 @@ class ApmInstanceDetail(AbstractModel):
1045
965
  @property
1046
966
  def ErrorSample(self):
1047
967
  """是否开启错误采样 0 关 1 开
1048
- 注意:此字段可能返回 null,表示取不到有效值。
1049
968
  :rtype: int
1050
969
  """
1051
970
  return self._ErrorSample
@@ -1057,7 +976,6 @@ class ApmInstanceDetail(AbstractModel):
1057
976
  @property
1058
977
  def SlowRequestSavedThreshold(self):
1059
978
  """慢调用保存阈值
1060
- 注意:此字段可能返回 null,表示取不到有效值。
1061
979
  :rtype: int
1062
980
  """
1063
981
  return self._SlowRequestSavedThreshold
@@ -1068,8 +986,7 @@ class ApmInstanceDetail(AbstractModel):
1068
986
 
1069
987
  @property
1070
988
  def LogRegion(self):
1071
- """cls日志所在地域
1072
- 注意:此字段可能返回 null,表示取不到有效值。
989
+ """CLS 日志所在地域
1073
990
  :rtype: str
1074
991
  """
1075
992
  return self._LogRegion
@@ -1081,7 +998,6 @@ class ApmInstanceDetail(AbstractModel):
1081
998
  @property
1082
999
  def LogSource(self):
1083
1000
  """日志来源
1084
- 注意:此字段可能返回 null,表示取不到有效值。
1085
1001
  :rtype: str
1086
1002
  """
1087
1003
  return self._LogSource
@@ -1093,7 +1009,6 @@ class ApmInstanceDetail(AbstractModel):
1093
1009
  @property
1094
1010
  def IsRelatedLog(self):
1095
1011
  """日志功能开关 0 关 | 1 开
1096
- 注意:此字段可能返回 null,表示取不到有效值。
1097
1012
  :rtype: int
1098
1013
  """
1099
1014
  return self._IsRelatedLog
@@ -1105,7 +1020,6 @@ class ApmInstanceDetail(AbstractModel):
1105
1020
  @property
1106
1021
  def LogTopicID(self):
1107
1022
  """日志主题ID
1108
- 注意:此字段可能返回 null,表示取不到有效值。
1109
1023
  :rtype: str
1110
1024
  """
1111
1025
  return self._LogTopicID
@@ -1117,7 +1031,6 @@ class ApmInstanceDetail(AbstractModel):
1117
1031
  @property
1118
1032
  def ClientCount(self):
1119
1033
  """该实例已上报的客户端应用数量
1120
- 注意:此字段可能返回 null,表示取不到有效值。
1121
1034
  :rtype: int
1122
1035
  """
1123
1036
  return self._ClientCount
@@ -1129,7 +1042,6 @@ class ApmInstanceDetail(AbstractModel):
1129
1042
  @property
1130
1043
  def TotalCount(self):
1131
1044
  """该实例已上报的总应用数量
1132
- 注意:此字段可能返回 null,表示取不到有效值。
1133
1045
  :rtype: int
1134
1046
  """
1135
1047
  return self._TotalCount
@@ -1140,8 +1052,7 @@ class ApmInstanceDetail(AbstractModel):
1140
1052
 
1141
1053
  @property
1142
1054
  def LogSet(self):
1143
- """CLS日志集 | ES集群ID
1144
- 注意:此字段可能返回 null,表示取不到有效值。
1055
+ """CLS 日志集 | ES 集群ID
1145
1056
  :rtype: str
1146
1057
  """
1147
1058
  return self._LogSet
@@ -1152,8 +1063,7 @@ class ApmInstanceDetail(AbstractModel):
1152
1063
 
1153
1064
  @property
1154
1065
  def MetricDuration(self):
1155
- """Metric数据保存时长
1156
- 注意:此字段可能返回 null,表示取不到有效值。
1066
+ """Metric 数据保存时长
1157
1067
  :rtype: int
1158
1068
  """
1159
1069
  return self._MetricDuration
@@ -1165,7 +1075,6 @@ class ApmInstanceDetail(AbstractModel):
1165
1075
  @property
1166
1076
  def CustomShowTags(self):
1167
1077
  """用户自定义展示标签列表
1168
- 注意:此字段可能返回 null,表示取不到有效值。
1169
1078
  :rtype: list of str
1170
1079
  """
1171
1080
  return self._CustomShowTags
@@ -1176,10 +1085,9 @@ class ApmInstanceDetail(AbstractModel):
1176
1085
 
1177
1086
  @property
1178
1087
  def PayMode(self):
1179
- """实例计费模式
1088
+ """业务系统计费模式
1180
1089
  1为预付费
1181
1090
  0为按量付费
1182
- 注意:此字段可能返回 null,表示取不到有效值。
1183
1091
  :rtype: int
1184
1092
  """
1185
1093
  return self._PayMode
@@ -1190,8 +1098,7 @@ class ApmInstanceDetail(AbstractModel):
1190
1098
 
1191
1099
  @property
1192
1100
  def PayModeEffective(self):
1193
- """实例计费模式是否生效
1194
- 注意:此字段可能返回 null,表示取不到有效值。
1101
+ """业务系统计费模式是否生效
1195
1102
  :rtype: bool
1196
1103
  """
1197
1104
  return self._PayModeEffective
@@ -1203,7 +1110,6 @@ class ApmInstanceDetail(AbstractModel):
1203
1110
  @property
1204
1111
  def ResponseDurationWarningThreshold(self):
1205
1112
  """响应时间满意阈值
1206
- 注意:此字段可能返回 null,表示取不到有效值。
1207
1113
  :rtype: int
1208
1114
  """
1209
1115
  return self._ResponseDurationWarningThreshold
@@ -1215,7 +1121,6 @@ class ApmInstanceDetail(AbstractModel):
1215
1121
  @property
1216
1122
  def Free(self):
1217
1123
  """是否免费(0=否,1=限额免费,2=完全免费),默认0
1218
- 注意:此字段可能返回 null,表示取不到有效值。
1219
1124
  :rtype: int
1220
1125
  """
1221
1126
  return self._Free
@@ -1226,8 +1131,7 @@ class ApmInstanceDetail(AbstractModel):
1226
1131
 
1227
1132
  @property
1228
1133
  def DefaultTSF(self):
1229
- """是否tsf默认业务系统(0=否,1-是)
1230
- 注意:此字段可能返回 null,表示取不到有效值。
1134
+ """是否 tsf 默认业务系统(0=否,1-是)
1231
1135
  :rtype: int
1232
1136
  """
1233
1137
  return self._DefaultTSF
@@ -1238,8 +1142,7 @@ class ApmInstanceDetail(AbstractModel):
1238
1142
 
1239
1143
  @property
1240
1144
  def IsRelatedDashboard(self):
1241
- """是否关联dashboard: 0 关 1 开
1242
- 注意:此字段可能返回 null,表示取不到有效值。
1145
+ """是否关联 Dashboard: 0 关 1 开
1243
1146
  :rtype: int
1244
1147
  """
1245
1148
  return self._IsRelatedDashboard
@@ -1250,8 +1153,7 @@ class ApmInstanceDetail(AbstractModel):
1250
1153
 
1251
1154
  @property
1252
1155
  def DashboardTopicID(self):
1253
- """dashboard ID
1254
- 注意:此字段可能返回 null,表示取不到有效值。
1156
+ """Dashboard ID
1255
1157
  :rtype: str
1256
1158
  """
1257
1159
  return self._DashboardTopicID
@@ -1263,7 +1165,6 @@ class ApmInstanceDetail(AbstractModel):
1263
1165
  @property
1264
1166
  def IsInstrumentationVulnerabilityScan(self):
1265
1167
  """是否开启组件漏洞检测
1266
- 注意:此字段可能返回 null,表示取不到有效值。
1267
1168
  :rtype: int
1268
1169
  """
1269
1170
  return self._IsInstrumentationVulnerabilityScan
@@ -1274,8 +1175,7 @@ class ApmInstanceDetail(AbstractModel):
1274
1175
 
1275
1176
  @property
1276
1177
  def IsSqlInjectionAnalysis(self):
1277
- """是否开启SQL注入分析
1278
- 注意:此字段可能返回 null,表示取不到有效值。
1178
+ """是否开启 SQL 注入分析
1279
1179
  :rtype: int
1280
1180
  """
1281
1181
  return self._IsSqlInjectionAnalysis
@@ -1460,7 +1360,7 @@ class CreateApmInstanceRequest(AbstractModel):
1460
1360
  :type Name: str
1461
1361
  :param _Description: 业务系统描述信息
1462
1362
  :type Description: str
1463
- :param _TraceDuration: Trace数据保存时长,单位为天默认存储为3天
1363
+ :param _TraceDuration: Trace 数据保存时长,单位为天默认存储为3天
1464
1364
  :type TraceDuration: int
1465
1365
  :param _Tags: 标签列表
1466
1366
  :type Tags: list of ApmTag
@@ -1468,7 +1368,7 @@ class CreateApmInstanceRequest(AbstractModel):
1468
1368
  :type SpanDailyCounters: int
1469
1369
  :param _PayMode: 业务系统的计费模式
1470
1370
  :type PayMode: int
1471
- :param _Free: (0=付费版;1=tsf受限免费版;2=免费版)
1371
+ :param _Free: (0=付费版;1=tsf 受限免费版;2=免费版)
1472
1372
  :type Free: int
1473
1373
  """
1474
1374
  self._Name = None
@@ -1503,7 +1403,7 @@ class CreateApmInstanceRequest(AbstractModel):
1503
1403
 
1504
1404
  @property
1505
1405
  def TraceDuration(self):
1506
- """Trace数据保存时长,单位为天默认存储为3天
1406
+ """Trace 数据保存时长,单位为天默认存储为3天
1507
1407
  :rtype: int
1508
1408
  """
1509
1409
  return self._TraceDuration
@@ -1547,7 +1447,7 @@ class CreateApmInstanceRequest(AbstractModel):
1547
1447
 
1548
1448
  @property
1549
1449
  def Free(self):
1550
- """(0=付费版;1=tsf受限免费版;2=免费版)
1450
+ """(0=付费版;1=tsf 受限免费版;2=免费版)
1551
1451
  :rtype: int
1552
1452
  """
1553
1453
  return self._Free
@@ -1587,8 +1487,7 @@ class CreateApmInstanceResponse(AbstractModel):
1587
1487
 
1588
1488
  def __init__(self):
1589
1489
  r"""
1590
- :param _InstanceId: 业务系统ID
1591
- 注意:此字段可能返回 null,表示取不到有效值。
1490
+ :param _InstanceId: 业务系统 ID
1592
1491
  :type InstanceId: str
1593
1492
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1594
1493
  :type RequestId: str
@@ -1598,8 +1497,7 @@ class CreateApmInstanceResponse(AbstractModel):
1598
1497
 
1599
1498
  @property
1600
1499
  def InstanceId(self):
1601
- """业务系统ID
1602
- 注意:此字段可能返回 null,表示取不到有效值。
1500
+ """业务系统 ID
1603
1501
  :rtype: str
1604
1502
  """
1605
1503
  return self._InstanceId
@@ -1632,7 +1530,7 @@ class DescribeApmAgentRequest(AbstractModel):
1632
1530
 
1633
1531
  def __init__(self):
1634
1532
  r"""
1635
- :param _InstanceId: 业务系统ID
1533
+ :param _InstanceId: 业务系统 ID
1636
1534
  :type InstanceId: str
1637
1535
  :param _AgentType: 接入方式
1638
1536
  :type AgentType: str
@@ -1651,7 +1549,7 @@ class DescribeApmAgentRequest(AbstractModel):
1651
1549
 
1652
1550
  @property
1653
1551
  def InstanceId(self):
1654
- """业务系统ID
1552
+ """业务系统 ID
1655
1553
  :rtype: str
1656
1554
  """
1657
1555
  return self._InstanceId
@@ -1728,8 +1626,7 @@ class DescribeApmAgentResponse(AbstractModel):
1728
1626
 
1729
1627
  def __init__(self):
1730
1628
  r"""
1731
- :param _ApmAgent: Agent信息
1732
- 注意:此字段可能返回 null,表示取不到有效值。
1629
+ :param _ApmAgent: Agent 信息
1733
1630
  :type ApmAgent: :class:`tencentcloud.apm.v20210622.models.ApmAgentInfo`
1734
1631
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1735
1632
  :type RequestId: str
@@ -1739,8 +1636,7 @@ class DescribeApmAgentResponse(AbstractModel):
1739
1636
 
1740
1637
  @property
1741
1638
  def ApmAgent(self):
1742
- """Agent信息
1743
- 注意:此字段可能返回 null,表示取不到有效值。
1639
+ """Agent 信息
1744
1640
  :rtype: :class:`tencentcloud.apm.v20210622.models.ApmAgentInfo`
1745
1641
  """
1746
1642
  return self._ApmAgent
@@ -1775,15 +1671,15 @@ class DescribeApmInstancesRequest(AbstractModel):
1775
1671
 
1776
1672
  def __init__(self):
1777
1673
  r"""
1778
- :param _Tags: Tag列表
1674
+ :param _Tags: Tag 列表
1779
1675
  :type Tags: list of ApmTag
1780
- :param _InstanceName: 搜索实例名
1676
+ :param _InstanceName: 搜索业务系统名
1781
1677
  :type InstanceName: str
1782
- :param _InstanceIds: 过滤实例ID
1678
+ :param _InstanceIds: 过滤业务系统 ID
1783
1679
  :type InstanceIds: list of str
1784
- :param _DemoInstanceFlag: 是否查询官方demo实例
1680
+ :param _DemoInstanceFlag: 是否查询官方 Demo 业务系统
1785
1681
  :type DemoInstanceFlag: int
1786
- :param _AllRegionsFlag: 是否查询全地域实例
1682
+ :param _AllRegionsFlag: 是否查询全地域业务系统
1787
1683
  :type AllRegionsFlag: int
1788
1684
  """
1789
1685
  self._Tags = None
@@ -1794,7 +1690,7 @@ class DescribeApmInstancesRequest(AbstractModel):
1794
1690
 
1795
1691
  @property
1796
1692
  def Tags(self):
1797
- """Tag列表
1693
+ """Tag 列表
1798
1694
  :rtype: list of ApmTag
1799
1695
  """
1800
1696
  return self._Tags
@@ -1805,7 +1701,7 @@ class DescribeApmInstancesRequest(AbstractModel):
1805
1701
 
1806
1702
  @property
1807
1703
  def InstanceName(self):
1808
- """搜索实例名
1704
+ """搜索业务系统名
1809
1705
  :rtype: str
1810
1706
  """
1811
1707
  return self._InstanceName
@@ -1816,7 +1712,7 @@ class DescribeApmInstancesRequest(AbstractModel):
1816
1712
 
1817
1713
  @property
1818
1714
  def InstanceIds(self):
1819
- """过滤实例ID
1715
+ """过滤业务系统 ID
1820
1716
  :rtype: list of str
1821
1717
  """
1822
1718
  return self._InstanceIds
@@ -1827,7 +1723,7 @@ class DescribeApmInstancesRequest(AbstractModel):
1827
1723
 
1828
1724
  @property
1829
1725
  def DemoInstanceFlag(self):
1830
- """是否查询官方demo实例
1726
+ """是否查询官方 Demo 业务系统
1831
1727
  :rtype: int
1832
1728
  """
1833
1729
  return self._DemoInstanceFlag
@@ -1838,7 +1734,7 @@ class DescribeApmInstancesRequest(AbstractModel):
1838
1734
 
1839
1735
  @property
1840
1736
  def AllRegionsFlag(self):
1841
- """是否查询全地域实例
1737
+ """是否查询全地域业务系统
1842
1738
  :rtype: int
1843
1739
  """
1844
1740
  return self._AllRegionsFlag
@@ -1876,8 +1772,7 @@ class DescribeApmInstancesResponse(AbstractModel):
1876
1772
 
1877
1773
  def __init__(self):
1878
1774
  r"""
1879
- :param _Instances: apm实例列表
1880
- 注意:此字段可能返回 null,表示取不到有效值。
1775
+ :param _Instances: APM 业务系统列表
1881
1776
  :type Instances: list of ApmInstanceDetail
1882
1777
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1883
1778
  :type RequestId: str
@@ -1887,8 +1782,7 @@ class DescribeApmInstancesResponse(AbstractModel):
1887
1782
 
1888
1783
  @property
1889
1784
  def Instances(self):
1890
- """apm实例列表
1891
- 注意:此字段可能返回 null,表示取不到有效值。
1785
+ """APM 业务系统列表
1892
1786
  :rtype: list of ApmInstanceDetail
1893
1787
  """
1894
1788
  return self._Instances
@@ -2209,7 +2103,6 @@ class DescribeGeneralMetricDataResponse(AbstractModel):
2209
2103
  def __init__(self):
2210
2104
  r"""
2211
2105
  :param _Records: 指标结果集
2212
- 注意:此字段可能返回 null,表示取不到有效值。
2213
2106
  :type Records: list of Line
2214
2107
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2215
2108
  :type RequestId: str
@@ -2220,7 +2113,6 @@ class DescribeGeneralMetricDataResponse(AbstractModel):
2220
2113
  @property
2221
2114
  def Records(self):
2222
2115
  """指标结果集
2223
- 注意:此字段可能返回 null,表示取不到有效值。
2224
2116
  :rtype: list of Line
2225
2117
  """
2226
2118
  return self._Records
@@ -2264,15 +2156,15 @@ class DescribeGeneralSpanListRequest(AbstractModel):
2264
2156
  :type Limit: int
2265
2157
  :param _OrderBy: 排序
2266
2158
  :type OrderBy: :class:`tencentcloud.apm.v20210622.models.OrderBy`
2267
- :param _StartTime: span查询开始时间戳(单位:秒)
2159
+ :param _StartTime: Span查询开始时间戳(单位:秒)
2268
2160
  :type StartTime: int
2269
- :param _InstanceId: 业务系统ID
2161
+ :param _InstanceId: 业务系统 ID
2270
2162
  :type InstanceId: str
2271
2163
  :param _Filters: 通用过滤参数
2272
2164
  :type Filters: list of Filter
2273
2165
  :param _BusinessName: 业务自身服务名
2274
2166
  :type BusinessName: str
2275
- :param _EndTime: span查询结束时间戳(单位:秒)
2167
+ :param _EndTime: Span查询结束时间戳(单位:秒)
2276
2168
  :type EndTime: int
2277
2169
  """
2278
2170
  self._Offset = None
@@ -2319,7 +2211,7 @@ class DescribeGeneralSpanListRequest(AbstractModel):
2319
2211
 
2320
2212
  @property
2321
2213
  def StartTime(self):
2322
- """span查询开始时间戳(单位:秒)
2214
+ """Span查询开始时间戳(单位:秒)
2323
2215
  :rtype: int
2324
2216
  """
2325
2217
  return self._StartTime
@@ -2330,7 +2222,7 @@ class DescribeGeneralSpanListRequest(AbstractModel):
2330
2222
 
2331
2223
  @property
2332
2224
  def InstanceId(self):
2333
- """业务系统ID
2225
+ """业务系统 ID
2334
2226
  :rtype: str
2335
2227
  """
2336
2228
  return self._InstanceId
@@ -2363,7 +2255,7 @@ class DescribeGeneralSpanListRequest(AbstractModel):
2363
2255
 
2364
2256
  @property
2365
2257
  def EndTime(self):
2366
- """span查询结束时间戳(单位:秒)
2258
+ """Span查询结束时间戳(单位:秒)
2367
2259
  :rtype: int
2368
2260
  """
2369
2261
  return self._EndTime
@@ -2408,7 +2300,7 @@ class DescribeGeneralSpanListResponse(AbstractModel):
2408
2300
  r"""
2409
2301
  :param _TotalCount: 总数量
2410
2302
  :type TotalCount: int
2411
- :param _Spans: Span分页列表
2303
+ :param _Spans: Span 分页列表
2412
2304
  :type Spans: list of Span
2413
2305
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2414
2306
  :type RequestId: str
@@ -2430,7 +2322,7 @@ class DescribeGeneralSpanListResponse(AbstractModel):
2430
2322
 
2431
2323
  @property
2432
2324
  def Spans(self):
2433
- """Span分页列表
2325
+ """Span 分页列表
2434
2326
  :rtype: list of Span
2435
2327
  """
2436
2328
  return self._Spans
@@ -2718,10 +2610,8 @@ class DescribeMetricRecordsResponse(AbstractModel):
2718
2610
  def __init__(self):
2719
2611
  r"""
2720
2612
  :param _Records: 指标结果集
2721
- 注意:此字段可能返回 null,表示取不到有效值。
2722
2613
  :type Records: list of ApmMetricRecord
2723
2614
  :param _TotalCount: 查询指标结果集条数
2724
- 注意:此字段可能返回 null,表示取不到有效值。
2725
2615
  :type TotalCount: int
2726
2616
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2727
2617
  :type RequestId: str
@@ -2733,7 +2623,6 @@ class DescribeMetricRecordsResponse(AbstractModel):
2733
2623
  @property
2734
2624
  def Records(self):
2735
2625
  """指标结果集
2736
- 注意:此字段可能返回 null,表示取不到有效值。
2737
2626
  :rtype: list of ApmMetricRecord
2738
2627
  """
2739
2628
  return self._Records
@@ -2745,7 +2634,6 @@ class DescribeMetricRecordsResponse(AbstractModel):
2745
2634
  @property
2746
2635
  def TotalCount(self):
2747
2636
  """查询指标结果集条数
2748
- 注意:此字段可能返回 null,表示取不到有效值。
2749
2637
  :rtype: int
2750
2638
  """
2751
2639
  return self._TotalCount
@@ -2953,7 +2841,6 @@ class DescribeServiceOverviewResponse(AbstractModel):
2953
2841
  def __init__(self):
2954
2842
  r"""
2955
2843
  :param _Records: 指标结果集
2956
- 注意:此字段可能返回 null,表示取不到有效值。
2957
2844
  :type Records: list of ApmMetricRecord
2958
2845
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2959
2846
  :type RequestId: str
@@ -2964,7 +2851,6 @@ class DescribeServiceOverviewResponse(AbstractModel):
2964
2851
  @property
2965
2852
  def Records(self):
2966
2853
  """指标结果集
2967
- 注意:此字段可能返回 null,表示取不到有效值。
2968
2854
  :rtype: list of ApmMetricRecord
2969
2855
  """
2970
2856
  return self._Records
@@ -3182,13 +3068,10 @@ class Filter(AbstractModel):
3182
3068
  def __init__(self):
3183
3069
  r"""
3184
3070
  :param _Type: 过滤方式(=, !=, in)
3185
- 注意:此字段可能返回 null,表示取不到有效值。
3186
3071
  :type Type: str
3187
3072
  :param _Key: 过滤维度名
3188
- 注意:此字段可能返回 null,表示取不到有效值。
3189
3073
  :type Key: str
3190
3074
  :param _Value: 过滤值,in过滤方式用逗号分割多个值
3191
- 注意:此字段可能返回 null,表示取不到有效值。
3192
3075
  :type Value: str
3193
3076
  """
3194
3077
  self._Type = None
@@ -3198,7 +3081,6 @@ class Filter(AbstractModel):
3198
3081
  @property
3199
3082
  def Type(self):
3200
3083
  """过滤方式(=, !=, in)
3201
- 注意:此字段可能返回 null,表示取不到有效值。
3202
3084
  :rtype: str
3203
3085
  """
3204
3086
  return self._Type
@@ -3210,7 +3092,6 @@ class Filter(AbstractModel):
3210
3092
  @property
3211
3093
  def Key(self):
3212
3094
  """过滤维度名
3213
- 注意:此字段可能返回 null,表示取不到有效值。
3214
3095
  :rtype: str
3215
3096
  """
3216
3097
  return self._Key
@@ -3222,7 +3103,6 @@ class Filter(AbstractModel):
3222
3103
  @property
3223
3104
  def Value(self):
3224
3105
  """过滤值,in过滤方式用逗号分割多个值
3225
- 注意:此字段可能返回 null,表示取不到有效值。
3226
3106
  :rtype: str
3227
3107
  """
3228
3108
  return self._Value
@@ -3305,10 +3185,8 @@ class Instrument(AbstractModel):
3305
3185
  def __init__(self):
3306
3186
  r"""
3307
3187
  :param _Name: 组件名称
3308
- 注意:此字段可能返回 null,表示取不到有效值。
3309
3188
  :type Name: str
3310
3189
  :param _Enable: 组件开关
3311
- 注意:此字段可能返回 null,表示取不到有效值。
3312
3190
  :type Enable: bool
3313
3191
  """
3314
3192
  self._Name = None
@@ -3317,7 +3195,6 @@ class Instrument(AbstractModel):
3317
3195
  @property
3318
3196
  def Name(self):
3319
3197
  """组件名称
3320
- 注意:此字段可能返回 null,表示取不到有效值。
3321
3198
  :rtype: str
3322
3199
  """
3323
3200
  return self._Name
@@ -3329,7 +3206,6 @@ class Instrument(AbstractModel):
3329
3206
  @property
3330
3207
  def Enable(self):
3331
3208
  """组件开关
3332
- 注意:此字段可能返回 null,表示取不到有效值。
3333
3209
  :rtype: bool
3334
3210
  """
3335
3211
  return self._Enable
@@ -3366,10 +3242,8 @@ class Line(AbstractModel):
3366
3242
  :param _TimeSerial: 时间序列
3367
3243
  :type TimeSerial: list of int
3368
3244
  :param _DataSerial: 数据序列
3369
- 注意:此字段可能返回 null,表示取不到有效值。
3370
3245
  :type DataSerial: list of float
3371
3246
  :param _Tags: 维度列表
3372
- 注意:此字段可能返回 null,表示取不到有效值。
3373
3247
  :type Tags: list of ApmTag
3374
3248
  """
3375
3249
  self._MetricName = None
@@ -3414,7 +3288,6 @@ class Line(AbstractModel):
3414
3288
  @property
3415
3289
  def DataSerial(self):
3416
3290
  """数据序列
3417
- 注意:此字段可能返回 null,表示取不到有效值。
3418
3291
  :rtype: list of float
3419
3292
  """
3420
3293
  return self._DataSerial
@@ -3426,7 +3299,6 @@ class Line(AbstractModel):
3426
3299
  @property
3427
3300
  def Tags(self):
3428
3301
  """维度列表
3429
- 注意:此字段可能返回 null,表示取不到有效值。
3430
3302
  :rtype: list of ApmTag
3431
3303
  """
3432
3304
  return self._Tags
@@ -4109,47 +3981,35 @@ class QueryMetricItem(AbstractModel):
4109
3981
 
4110
3982
 
4111
3983
  class Span(AbstractModel):
4112
- """Span对象
3984
+ """Span 对象
4113
3985
 
4114
3986
  """
4115
3987
 
4116
3988
  def __init__(self):
4117
3989
  r"""
4118
- :param _TraceID: Trace Id
4119
- 注意:此字段可能返回 null,表示取不到有效值。
3990
+ :param _TraceID: Trace ID
4120
3991
  :type TraceID: str
4121
3992
  :param _Logs: 日志
4122
- 注意:此字段可能返回 null,表示取不到有效值。
4123
3993
  :type Logs: list of SpanLog
4124
3994
  :param _Tags: 标签
4125
- 注意:此字段可能返回 null,表示取不到有效值。
4126
3995
  :type Tags: list of SpanTag
4127
3996
  :param _Process: 上报应用服务信息
4128
- 注意:此字段可能返回 null,表示取不到有效值。
4129
3997
  :type Process: :class:`tencentcloud.apm.v20210622.models.SpanProcess`
4130
3998
  :param _Timestamp: 产生时间戳(毫秒)
4131
- 注意:此字段可能返回 null,表示取不到有效值。
4132
3999
  :type Timestamp: int
4133
- :param _OperationName: Span名称
4134
- 注意:此字段可能返回 null,表示取不到有效值。
4000
+ :param _OperationName: Span 名称
4135
4001
  :type OperationName: str
4136
4002
  :param _References: 关联关系
4137
- 注意:此字段可能返回 null,表示取不到有效值。
4138
4003
  :type References: list of SpanReference
4139
4004
  :param _StartTime: 产生时间戳(微秒)
4140
- 注意:此字段可能返回 null,表示取不到有效值。
4141
4005
  :type StartTime: int
4142
4006
  :param _Duration: 持续耗时(微妙)
4143
- 注意:此字段可能返回 null,表示取不到有效值。
4144
4007
  :type Duration: int
4145
- :param _SpanID: Span Id
4146
- 注意:此字段可能返回 null,表示取不到有效值。
4008
+ :param _SpanID: Span ID
4147
4009
  :type SpanID: str
4148
4010
  :param _StartTimeMillis: 产生时间戳(毫秒)
4149
- 注意:此字段可能返回 null,表示取不到有效值。
4150
4011
  :type StartTimeMillis: int
4151
- :param _ParentSpanID: Parent Span Id
4152
- 注意:此字段可能返回 null,表示取不到有效值。
4012
+ :param _ParentSpanID: Parent Span ID
4153
4013
  :type ParentSpanID: str
4154
4014
  """
4155
4015
  self._TraceID = None
@@ -4167,8 +4027,7 @@ class Span(AbstractModel):
4167
4027
 
4168
4028
  @property
4169
4029
  def TraceID(self):
4170
- """Trace Id
4171
- 注意:此字段可能返回 null,表示取不到有效值。
4030
+ """Trace ID
4172
4031
  :rtype: str
4173
4032
  """
4174
4033
  return self._TraceID
@@ -4180,7 +4039,6 @@ class Span(AbstractModel):
4180
4039
  @property
4181
4040
  def Logs(self):
4182
4041
  """日志
4183
- 注意:此字段可能返回 null,表示取不到有效值。
4184
4042
  :rtype: list of SpanLog
4185
4043
  """
4186
4044
  return self._Logs
@@ -4192,7 +4050,6 @@ class Span(AbstractModel):
4192
4050
  @property
4193
4051
  def Tags(self):
4194
4052
  """标签
4195
- 注意:此字段可能返回 null,表示取不到有效值。
4196
4053
  :rtype: list of SpanTag
4197
4054
  """
4198
4055
  return self._Tags
@@ -4204,7 +4061,6 @@ class Span(AbstractModel):
4204
4061
  @property
4205
4062
  def Process(self):
4206
4063
  """上报应用服务信息
4207
- 注意:此字段可能返回 null,表示取不到有效值。
4208
4064
  :rtype: :class:`tencentcloud.apm.v20210622.models.SpanProcess`
4209
4065
  """
4210
4066
  return self._Process
@@ -4216,7 +4072,6 @@ class Span(AbstractModel):
4216
4072
  @property
4217
4073
  def Timestamp(self):
4218
4074
  """产生时间戳(毫秒)
4219
- 注意:此字段可能返回 null,表示取不到有效值。
4220
4075
  :rtype: int
4221
4076
  """
4222
4077
  return self._Timestamp
@@ -4227,8 +4082,7 @@ class Span(AbstractModel):
4227
4082
 
4228
4083
  @property
4229
4084
  def OperationName(self):
4230
- """Span名称
4231
- 注意:此字段可能返回 null,表示取不到有效值。
4085
+ """Span 名称
4232
4086
  :rtype: str
4233
4087
  """
4234
4088
  return self._OperationName
@@ -4240,7 +4094,6 @@ class Span(AbstractModel):
4240
4094
  @property
4241
4095
  def References(self):
4242
4096
  """关联关系
4243
- 注意:此字段可能返回 null,表示取不到有效值。
4244
4097
  :rtype: list of SpanReference
4245
4098
  """
4246
4099
  return self._References
@@ -4252,7 +4105,6 @@ class Span(AbstractModel):
4252
4105
  @property
4253
4106
  def StartTime(self):
4254
4107
  """产生时间戳(微秒)
4255
- 注意:此字段可能返回 null,表示取不到有效值。
4256
4108
  :rtype: int
4257
4109
  """
4258
4110
  return self._StartTime
@@ -4264,7 +4116,6 @@ class Span(AbstractModel):
4264
4116
  @property
4265
4117
  def Duration(self):
4266
4118
  """持续耗时(微妙)
4267
- 注意:此字段可能返回 null,表示取不到有效值。
4268
4119
  :rtype: int
4269
4120
  """
4270
4121
  return self._Duration
@@ -4275,8 +4126,7 @@ class Span(AbstractModel):
4275
4126
 
4276
4127
  @property
4277
4128
  def SpanID(self):
4278
- """Span Id
4279
- 注意:此字段可能返回 null,表示取不到有效值。
4129
+ """Span ID
4280
4130
  :rtype: str
4281
4131
  """
4282
4132
  return self._SpanID
@@ -4288,7 +4138,6 @@ class Span(AbstractModel):
4288
4138
  @property
4289
4139
  def StartTimeMillis(self):
4290
4140
  """产生时间戳(毫秒)
4291
- 注意:此字段可能返回 null,表示取不到有效值。
4292
4141
  :rtype: int
4293
4142
  """
4294
4143
  return self._StartTimeMillis
@@ -4299,8 +4148,7 @@ class Span(AbstractModel):
4299
4148
 
4300
4149
  @property
4301
4150
  def ParentSpanID(self):
4302
- """Parent Span Id
4303
- 注意:此字段可能返回 null,表示取不到有效值。
4151
+ """Parent Span ID
4304
4152
  :rtype: str
4305
4153
  """
4306
4154
  return self._ParentSpanID