tencentcloud-sdk-python 3.0.1342__py2.py3-none-any.whl → 3.0.1344__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bi/v20220105/models.py +68 -0
- tencentcloud/billing/v20180709/billing_client.py +3 -1
- tencentcloud/billing/v20180709/models.py +90 -224
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +117 -0
- tencentcloud/cdwpg/v20201230/models.py +4 -4
- tencentcloud/cdz/v20221123/models.py +0 -4
- tencentcloud/cfg/v20210820/models.py +0 -192
- tencentcloud/clb/v20180317/clb_client.py +2 -2
- tencentcloud/clb/v20180317/models.py +39 -10
- tencentcloud/cls/v20201016/models.py +17 -186
- tencentcloud/cwp/v20180228/models.py +61 -18
- tencentcloud/cynosdb/v20190107/models.py +2 -2
- tencentcloud/dbbrain/v20191016/models.py +0 -16
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +161 -0
- tencentcloud/dbbrain/v20210527/models.py +1731 -389
- tencentcloud/domain/v20180808/models.py +0 -10
- tencentcloud/dts/v20180330/models.py +0 -6
- tencentcloud/dts/v20211206/models.py +2 -210
- tencentcloud/ess/v20201111/models.py +71 -4
- tencentcloud/essbasic/v20210526/models.py +59 -2
- tencentcloud/fmu/v20191213/errorcodes.py +3 -0
- tencentcloud/fmu/v20191213/models.py +4 -4
- tencentcloud/goosefs/v20220519/models.py +0 -2
- tencentcloud/gwlb/v20240906/models.py +4 -4
- tencentcloud/hai/v20230812/errorcodes.py +1 -1
- tencentcloud/iotcloud/v20210408/models.py +2 -4
- tencentcloud/iotexplorer/v20190423/errorcodes.py +12 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +995 -65
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +46 -0
- tencentcloud/iotvideo/v20211125/models.py +188 -0
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lighthouse/v20200324/errorcodes.py +12 -9
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +24 -17
- tencentcloud/lighthouse/v20200324/models.py +72 -48
- tencentcloud/lke/v20231130/models.py +17 -2
- tencentcloud/lkeap/v20240522/models.py +4 -8
- tencentcloud/lowcode/v20210108/models.py +0 -2
- tencentcloud/monitor/v20180724/models.py +251 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/mps/v20190612/errorcodes.py +34 -0
- tencentcloud/mps/v20190612/models.py +4254 -384
- tencentcloud/mps/v20190612/mps_client.py +208 -0
- tencentcloud/mqtt/v20240516/errorcodes.py +9 -0
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/organization/v20210331/models.py +0 -82
- tencentcloud/redis/v20180412/models.py +64 -0
- tencentcloud/redis/v20180412/redis_client.py +23 -0
- tencentcloud/tcb/v20180608/models.py +109 -157
- tencentcloud/tcb/v20180608/tcb_client.py +23 -0
- tencentcloud/tdmq/v20200217/models.py +158 -282
- tencentcloud/teo/v20220901/models.py +955 -20
- tencentcloud/tione/v20211111/models.py +90 -0
- tencentcloud/vdb/v20230616/models.py +45 -0
- tencentcloud/vdb/v20230616/vdb_client.py +1 -1
- tencentcloud/vrs/v20200824/models.py +32 -0
- tencentcloud/wedata/v20210820/models.py +167 -0
- tencentcloud/weilingwith/v20230427/models.py +0 -964
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/RECORD +65 -65
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/top_level.txt +0 -0
@@ -109,13 +109,10 @@ class AdvanceFilterRuleInfo(AbstractModel):
|
|
109
109
|
def __init__(self):
|
110
110
|
r"""
|
111
111
|
:param _Key: 过滤字段
|
112
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
113
112
|
:type Key: str
|
114
113
|
:param _Rule: 过滤规则,0:等于,1:字段存在,2:字段不存在
|
115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
116
114
|
:type Rule: int
|
117
115
|
:param _Value: 过滤值
|
118
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
119
116
|
:type Value: str
|
120
117
|
"""
|
121
118
|
self._Key = None
|
@@ -125,7 +122,6 @@ class AdvanceFilterRuleInfo(AbstractModel):
|
|
125
122
|
@property
|
126
123
|
def Key(self):
|
127
124
|
"""过滤字段
|
128
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
129
125
|
:rtype: str
|
130
126
|
"""
|
131
127
|
return self._Key
|
@@ -137,7 +133,6 @@ class AdvanceFilterRuleInfo(AbstractModel):
|
|
137
133
|
@property
|
138
134
|
def Rule(self):
|
139
135
|
"""过滤规则,0:等于,1:字段存在,2:字段不存在
|
140
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
141
136
|
:rtype: int
|
142
137
|
"""
|
143
138
|
return self._Rule
|
@@ -149,7 +144,6 @@ class AdvanceFilterRuleInfo(AbstractModel):
|
|
149
144
|
@property
|
150
145
|
def Value(self):
|
151
146
|
"""过滤值
|
152
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
153
147
|
:rtype: str
|
154
148
|
"""
|
155
149
|
return self._Value
|
@@ -187,7 +181,6 @@ CustomQuery:检索语句。 QueryIndex为-1时有效且必填,value示例:
|
|
187
181
|
Fields:字段。value支持 __SOURCE__;__FILENAME__;__HOSTNAME__;__TIMESTAMP__;__INDEX_STATUS__;__PKG_LOGID__;__TOPIC__。
|
188
182
|
Format:显示形式。value支持 1:每条日志一行;2:每条日志每个字段一行。
|
189
183
|
Limit:最大日志条数。 value示例: 5。
|
190
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
191
184
|
:type Key: str
|
192
185
|
:param _Value: 值。
|
193
186
|
键对应值如下:
|
@@ -197,7 +190,6 @@ CustomQuery:检索语句。 QueryIndex为-1时有效且必填,value示例:
|
|
197
190
|
Fields:字段。value支持 __SOURCE__;__FILENAME__;__HOSTNAME__;__TIMESTAMP__;__INDEX_STATUS__;__PKG_LOGID__;__TOPIC__。
|
198
191
|
Format:显示形式。value支持 1:每条日志一行;2:每条日志每个字段一行。
|
199
192
|
Limit:最大日志条数。 value示例: 5。
|
200
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
201
193
|
:type Value: str
|
202
194
|
"""
|
203
195
|
self._Key = None
|
@@ -212,7 +204,6 @@ CustomQuery:检索语句。 QueryIndex为-1时有效且必填,value示例:
|
|
212
204
|
Fields:字段。value支持 __SOURCE__;__FILENAME__;__HOSTNAME__;__TIMESTAMP__;__INDEX_STATUS__;__PKG_LOGID__;__TOPIC__。
|
213
205
|
Format:显示形式。value支持 1:每条日志一行;2:每条日志每个字段一行。
|
214
206
|
Limit:最大日志条数。 value示例: 5。
|
215
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
216
207
|
:rtype: str
|
217
208
|
"""
|
218
209
|
return self._Key
|
@@ -231,7 +222,6 @@ CustomQuery:检索语句。 QueryIndex为-1时有效且必填,value示例:
|
|
231
222
|
Fields:字段。value支持 __SOURCE__;__FILENAME__;__HOSTNAME__;__TIMESTAMP__;__INDEX_STATUS__;__PKG_LOGID__;__TOPIC__。
|
232
223
|
Format:显示形式。value支持 1:每条日志一行;2:每条日志每个字段一行。
|
233
224
|
Limit:最大日志条数。 value示例: 5。
|
234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
235
225
|
:rtype: str
|
236
226
|
"""
|
237
227
|
return self._Value
|
@@ -338,29 +328,21 @@ class AlarmInfo(AbstractModel):
|
|
338
328
|
注意:此字段可能返回 null,表示取不到有效值。
|
339
329
|
:type MessageTemplate: str
|
340
330
|
:param _CallBack: 自定义回调模板
|
341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
342
331
|
:type CallBack: :class:`tencentcloud.cls.v20201016.models.CallBackInfo`
|
343
332
|
:param _Analysis: 多维分析设置
|
344
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
345
333
|
:type Analysis: list of AnalysisDimensional
|
346
|
-
:param _GroupTriggerStatus: 分组触发状态。
|
347
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
334
|
+
:param _GroupTriggerStatus: 分组触发状态。true:开启,false:关闭(默认)
|
348
335
|
:type GroupTriggerStatus: bool
|
349
336
|
:param _GroupTriggerCondition: 分组触发条件。
|
350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
351
337
|
:type GroupTriggerCondition: list of str
|
352
338
|
:param _MonitorObjectType: 监控对象类型。0:执行语句共用监控对象;1:每个执行语句单独选择监控对象。
|
353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
354
339
|
:type MonitorObjectType: int
|
355
340
|
:param _AlarmLevel: 告警级别。0:警告(Warn);1:提醒(Info);2:紧急 (Critical)。
|
356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
357
341
|
:type AlarmLevel: int
|
358
342
|
:param _Classifications: 告警附加分类字段。
|
359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
360
343
|
:type Classifications: list of AlarmClassification
|
361
344
|
:param _MultiConditions: 多触发条件。与
|
362
345
|
Condition互斥。
|
363
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
364
346
|
:type MultiConditions: list of MultiCondition
|
365
347
|
"""
|
366
348
|
self._Name = None
|
@@ -520,7 +502,6 @@ Condition互斥。
|
|
520
502
|
@property
|
521
503
|
def CallBack(self):
|
522
504
|
"""自定义回调模板
|
523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
524
505
|
:rtype: :class:`tencentcloud.cls.v20201016.models.CallBackInfo`
|
525
506
|
"""
|
526
507
|
return self._CallBack
|
@@ -532,7 +513,6 @@ Condition互斥。
|
|
532
513
|
@property
|
533
514
|
def Analysis(self):
|
534
515
|
"""多维分析设置
|
535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
536
516
|
:rtype: list of AnalysisDimensional
|
537
517
|
"""
|
538
518
|
return self._Analysis
|
@@ -543,8 +523,7 @@ Condition互斥。
|
|
543
523
|
|
544
524
|
@property
|
545
525
|
def GroupTriggerStatus(self):
|
546
|
-
"""分组触发状态。
|
547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
526
|
+
"""分组触发状态。true:开启,false:关闭(默认)
|
548
527
|
:rtype: bool
|
549
528
|
"""
|
550
529
|
return self._GroupTriggerStatus
|
@@ -556,7 +535,6 @@ Condition互斥。
|
|
556
535
|
@property
|
557
536
|
def GroupTriggerCondition(self):
|
558
537
|
"""分组触发条件。
|
559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
560
538
|
:rtype: list of str
|
561
539
|
"""
|
562
540
|
return self._GroupTriggerCondition
|
@@ -568,7 +546,6 @@ Condition互斥。
|
|
568
546
|
@property
|
569
547
|
def MonitorObjectType(self):
|
570
548
|
"""监控对象类型。0:执行语句共用监控对象;1:每个执行语句单独选择监控对象。
|
571
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
572
549
|
:rtype: int
|
573
550
|
"""
|
574
551
|
return self._MonitorObjectType
|
@@ -580,7 +557,6 @@ Condition互斥。
|
|
580
557
|
@property
|
581
558
|
def AlarmLevel(self):
|
582
559
|
"""告警级别。0:警告(Warn);1:提醒(Info);2:紧急 (Critical)。
|
583
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
584
560
|
:rtype: int
|
585
561
|
"""
|
586
562
|
return self._AlarmLevel
|
@@ -592,7 +568,6 @@ Condition互斥。
|
|
592
568
|
@property
|
593
569
|
def Classifications(self):
|
594
570
|
"""告警附加分类字段。
|
595
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
596
571
|
:rtype: list of AlarmClassification
|
597
572
|
"""
|
598
573
|
return self._Classifications
|
@@ -605,7 +580,6 @@ Condition互斥。
|
|
605
580
|
def MultiConditions(self):
|
606
581
|
"""多触发条件。与
|
607
582
|
Condition互斥。
|
608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
609
583
|
:rtype: list of MultiCondition
|
610
584
|
"""
|
611
585
|
return self._MultiConditions
|
@@ -680,7 +654,6 @@ class AlarmNotice(AbstractModel):
|
|
680
654
|
:param _Name: 告警通知渠道组名称。
|
681
655
|
:type Name: str
|
682
656
|
:param _Tags: 告警通知渠道组绑定的标签信息。
|
683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
684
657
|
:type Tags: list of Tag
|
685
658
|
:param _Type: 告警模板的类型。可选值:
|
686
659
|
<br><li> Trigger - 告警触发</li>
|
@@ -688,32 +661,24 @@ class AlarmNotice(AbstractModel):
|
|
688
661
|
<br><li> All - 告警触发和告警恢复</li>
|
689
662
|
:type Type: str
|
690
663
|
:param _NoticeReceivers: 告警通知模板接收者信息。
|
691
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
692
664
|
:type NoticeReceivers: list of NoticeReceiver
|
693
665
|
:param _WebCallbacks: 告警通知模板回调信息。
|
694
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
695
666
|
:type WebCallbacks: list of WebCallback
|
696
667
|
:param _AlarmNoticeId: 告警通知模板ID。
|
697
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
698
668
|
:type AlarmNoticeId: str
|
699
669
|
:param _NoticeRules: 通知规则。
|
700
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
701
670
|
:type NoticeRules: list of NoticeRule
|
702
671
|
:param _AlarmShieldStatus: 免登录操作告警开关。
|
703
672
|
参数值: 1:关闭 2:开启(默认开启)
|
704
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
705
673
|
:type AlarmShieldStatus: int
|
706
674
|
:param _JumpDomain: 调用链接域名。http:// 或者 https:// 开头,不能/结尾
|
707
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
708
675
|
:type JumpDomain: str
|
709
676
|
:param _AlarmNoticeDeliverConfig: 投递相关信息。
|
710
677
|
注意:此字段可能返回 null,表示取不到有效值。
|
711
678
|
:type AlarmNoticeDeliverConfig: :class:`tencentcloud.cls.v20201016.models.AlarmNoticeDeliverConfig`
|
712
679
|
:param _CreateTime: 创建时间。
|
713
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
714
680
|
:type CreateTime: str
|
715
681
|
:param _UpdateTime: 最近更新时间。
|
716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
717
682
|
:type UpdateTime: str
|
718
683
|
"""
|
719
684
|
self._Name = None
|
@@ -743,7 +708,6 @@ class AlarmNotice(AbstractModel):
|
|
743
708
|
@property
|
744
709
|
def Tags(self):
|
745
710
|
"""告警通知渠道组绑定的标签信息。
|
746
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
747
711
|
:rtype: list of Tag
|
748
712
|
"""
|
749
713
|
return self._Tags
|
@@ -769,7 +733,6 @@ class AlarmNotice(AbstractModel):
|
|
769
733
|
@property
|
770
734
|
def NoticeReceivers(self):
|
771
735
|
"""告警通知模板接收者信息。
|
772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
773
736
|
:rtype: list of NoticeReceiver
|
774
737
|
"""
|
775
738
|
return self._NoticeReceivers
|
@@ -781,7 +744,6 @@ class AlarmNotice(AbstractModel):
|
|
781
744
|
@property
|
782
745
|
def WebCallbacks(self):
|
783
746
|
"""告警通知模板回调信息。
|
784
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
785
747
|
:rtype: list of WebCallback
|
786
748
|
"""
|
787
749
|
return self._WebCallbacks
|
@@ -793,7 +755,6 @@ class AlarmNotice(AbstractModel):
|
|
793
755
|
@property
|
794
756
|
def AlarmNoticeId(self):
|
795
757
|
"""告警通知模板ID。
|
796
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
797
758
|
:rtype: str
|
798
759
|
"""
|
799
760
|
return self._AlarmNoticeId
|
@@ -805,7 +766,6 @@ class AlarmNotice(AbstractModel):
|
|
805
766
|
@property
|
806
767
|
def NoticeRules(self):
|
807
768
|
"""通知规则。
|
808
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
809
769
|
:rtype: list of NoticeRule
|
810
770
|
"""
|
811
771
|
return self._NoticeRules
|
@@ -818,7 +778,6 @@ class AlarmNotice(AbstractModel):
|
|
818
778
|
def AlarmShieldStatus(self):
|
819
779
|
"""免登录操作告警开关。
|
820
780
|
参数值: 1:关闭 2:开启(默认开启)
|
821
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
822
781
|
:rtype: int
|
823
782
|
"""
|
824
783
|
return self._AlarmShieldStatus
|
@@ -830,7 +789,6 @@ class AlarmNotice(AbstractModel):
|
|
830
789
|
@property
|
831
790
|
def JumpDomain(self):
|
832
791
|
"""调用链接域名。http:// 或者 https:// 开头,不能/结尾
|
833
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
834
792
|
:rtype: str
|
835
793
|
"""
|
836
794
|
return self._JumpDomain
|
@@ -854,7 +812,6 @@ class AlarmNotice(AbstractModel):
|
|
854
812
|
@property
|
855
813
|
def CreateTime(self):
|
856
814
|
"""创建时间。
|
857
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
858
815
|
:rtype: str
|
859
816
|
"""
|
860
817
|
return self._CreateTime
|
@@ -866,7 +823,6 @@ class AlarmNotice(AbstractModel):
|
|
866
823
|
@property
|
867
824
|
def UpdateTime(self):
|
868
825
|
"""最近更新时间。
|
869
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
870
826
|
:rtype: str
|
871
827
|
"""
|
872
828
|
return self._UpdateTime
|
@@ -931,7 +887,6 @@ class AlarmNoticeDeliverConfig(AbstractModel):
|
|
931
887
|
:param _DeliverConfig: 通知渠道投递日志配置信息。
|
932
888
|
:type DeliverConfig: :class:`tencentcloud.cls.v20201016.models.DeliverConfig`
|
933
889
|
:param _ErrMsg: 投递失败原因。
|
934
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
935
890
|
:type ErrMsg: str
|
936
891
|
"""
|
937
892
|
self._DeliverConfig = None
|
@@ -951,7 +906,6 @@ class AlarmNoticeDeliverConfig(AbstractModel):
|
|
951
906
|
@property
|
952
907
|
def ErrMsg(self):
|
953
908
|
"""投递失败原因。
|
954
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
955
909
|
:rtype: str
|
956
910
|
"""
|
957
911
|
return self._ErrMsg
|
@@ -994,7 +948,6 @@ class AlarmShieldInfo(AbstractModel):
|
|
994
948
|
:param _Type: 屏蔽类型。1:屏蔽所有通知,2:按照Rule参数屏蔽匹配规则的通知。
|
995
949
|
:type Type: int
|
996
950
|
:param _Rule: 屏蔽规则,当Type为2时必填。规则填写方式详见[产品文档](https://cloud.tencent.com/document/product/614/103178#rule)。
|
997
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
998
951
|
:type Rule: str
|
999
952
|
:param _Reason: 屏蔽原因。
|
1000
953
|
:type Reason: str
|
@@ -1082,7 +1035,6 @@ class AlarmShieldInfo(AbstractModel):
|
|
1082
1035
|
@property
|
1083
1036
|
def Rule(self):
|
1084
1037
|
"""屏蔽规则,当Type为2时必填。规则填写方式详见[产品文档](https://cloud.tencent.com/document/product/614/103178#rule)。
|
1085
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1086
1038
|
:rtype: str
|
1087
1039
|
"""
|
1088
1040
|
return self._Rule
|
@@ -1191,27 +1143,20 @@ class AlarmTarget(AbstractModel):
|
|
1191
1143
|
def __init__(self):
|
1192
1144
|
r"""
|
1193
1145
|
:param _TopicId: 日志主题ID。
|
1194
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1195
1146
|
:type TopicId: str
|
1196
1147
|
:param _Query: 查询语句。
|
1197
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1198
1148
|
:type Query: str
|
1199
1149
|
:param _Number: 告警对象序号;从1开始递增。
|
1200
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1201
1150
|
:type Number: int
|
1202
1151
|
:param _StartTimeOffset: 查询范围起始时间相对于告警执行时间的偏移,单位为分钟,取值为非正,最大值为0,最小值为-1440。
|
1203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1204
1152
|
:type StartTimeOffset: int
|
1205
1153
|
:param _EndTimeOffset: 查询范围终止时间相对于告警执行时间的偏移,单位为分钟,取值为非正,须大于StartTimeOffset,最大值为0,最小值为-1440。
|
1206
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1207
1154
|
:type EndTimeOffset: int
|
1208
1155
|
:param _LogsetId: 日志集ID。
|
1209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1210
1156
|
:type LogsetId: str
|
1211
1157
|
:param _SyntaxRule: 检索语法规则,默认值为0。
|
1212
1158
|
0:Lucene语法,1:CQL语法。
|
1213
1159
|
详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
1214
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1215
1160
|
:type SyntaxRule: int
|
1216
1161
|
"""
|
1217
1162
|
self._TopicId = None
|
@@ -1225,7 +1170,6 @@ class AlarmTarget(AbstractModel):
|
|
1225
1170
|
@property
|
1226
1171
|
def TopicId(self):
|
1227
1172
|
"""日志主题ID。
|
1228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1229
1173
|
:rtype: str
|
1230
1174
|
"""
|
1231
1175
|
return self._TopicId
|
@@ -1237,7 +1181,6 @@ class AlarmTarget(AbstractModel):
|
|
1237
1181
|
@property
|
1238
1182
|
def Query(self):
|
1239
1183
|
"""查询语句。
|
1240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1241
1184
|
:rtype: str
|
1242
1185
|
"""
|
1243
1186
|
return self._Query
|
@@ -1249,7 +1192,6 @@ class AlarmTarget(AbstractModel):
|
|
1249
1192
|
@property
|
1250
1193
|
def Number(self):
|
1251
1194
|
"""告警对象序号;从1开始递增。
|
1252
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1253
1195
|
:rtype: int
|
1254
1196
|
"""
|
1255
1197
|
return self._Number
|
@@ -1261,7 +1203,6 @@ class AlarmTarget(AbstractModel):
|
|
1261
1203
|
@property
|
1262
1204
|
def StartTimeOffset(self):
|
1263
1205
|
"""查询范围起始时间相对于告警执行时间的偏移,单位为分钟,取值为非正,最大值为0,最小值为-1440。
|
1264
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1265
1206
|
:rtype: int
|
1266
1207
|
"""
|
1267
1208
|
return self._StartTimeOffset
|
@@ -1273,7 +1214,6 @@ class AlarmTarget(AbstractModel):
|
|
1273
1214
|
@property
|
1274
1215
|
def EndTimeOffset(self):
|
1275
1216
|
"""查询范围终止时间相对于告警执行时间的偏移,单位为分钟,取值为非正,须大于StartTimeOffset,最大值为0,最小值为-1440。
|
1276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1277
1217
|
:rtype: int
|
1278
1218
|
"""
|
1279
1219
|
return self._EndTimeOffset
|
@@ -1285,7 +1225,6 @@ class AlarmTarget(AbstractModel):
|
|
1285
1225
|
@property
|
1286
1226
|
def LogsetId(self):
|
1287
1227
|
"""日志集ID。
|
1288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1289
1228
|
:rtype: str
|
1290
1229
|
"""
|
1291
1230
|
return self._LogsetId
|
@@ -1299,7 +1238,6 @@ class AlarmTarget(AbstractModel):
|
|
1299
1238
|
"""检索语法规则,默认值为0。
|
1300
1239
|
0:Lucene语法,1:CQL语法。
|
1301
1240
|
详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
1302
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1303
1241
|
:rtype: int
|
1304
1242
|
"""
|
1305
1243
|
return self._SyntaxRule
|
@@ -1353,11 +1291,9 @@ class AlarmTargetInfo(AbstractModel):
|
|
1353
1291
|
:param _SyntaxRule: 检索语法规则,默认值为0。
|
1354
1292
|
0:Lucene语法,1:CQL语法。
|
1355
1293
|
详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
1356
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1357
1294
|
:type SyntaxRule: int
|
1358
1295
|
:param _BizType: 主题类型。
|
1359
1296
|
0: 日志主题,1: 指标主题
|
1360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1361
1297
|
:type BizType: int
|
1362
1298
|
"""
|
1363
1299
|
self._LogsetId = None
|
@@ -1464,7 +1400,6 @@ class AlarmTargetInfo(AbstractModel):
|
|
1464
1400
|
"""检索语法规则,默认值为0。
|
1465
1401
|
0:Lucene语法,1:CQL语法。
|
1466
1402
|
详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
1467
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1468
1403
|
:rtype: int
|
1469
1404
|
"""
|
1470
1405
|
return self._SyntaxRule
|
@@ -1477,7 +1412,6 @@ class AlarmTargetInfo(AbstractModel):
|
|
1477
1412
|
def BizType(self):
|
1478
1413
|
"""主题类型。
|
1479
1414
|
0: 日志主题,1: 指标主题
|
1480
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1481
1415
|
:rtype: int
|
1482
1416
|
"""
|
1483
1417
|
return self._BizType
|
@@ -1593,14 +1527,11 @@ class AlertHistoryRecord(AbstractModel):
|
|
1593
1527
|
:param _CreateTime: 告警发生时间,毫秒级Unix时间戳
|
1594
1528
|
:type CreateTime: int
|
1595
1529
|
:param _GroupTriggerCondition: 告警分组触发时对应的分组信息
|
1596
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1597
1530
|
:type GroupTriggerCondition: list of GroupTriggerConditionInfo
|
1598
1531
|
:param _AlarmLevel: 告警级别,0代表警告(Warn),1代表提醒(Info),2代表紧急 (Critical)
|
1599
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1600
1532
|
:type AlarmLevel: int
|
1601
1533
|
:param _MonitorObjectType: 监控对象类型。
|
1602
1534
|
0:执行语句共用监控对象; 1:每个执行语句单独选择监控对象。
|
1603
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1604
1535
|
:type MonitorObjectType: int
|
1605
1536
|
"""
|
1606
1537
|
self._RecordId = None
|
@@ -1766,7 +1697,6 @@ class AlertHistoryRecord(AbstractModel):
|
|
1766
1697
|
@property
|
1767
1698
|
def GroupTriggerCondition(self):
|
1768
1699
|
"""告警分组触发时对应的分组信息
|
1769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1770
1700
|
:rtype: list of GroupTriggerConditionInfo
|
1771
1701
|
"""
|
1772
1702
|
return self._GroupTriggerCondition
|
@@ -1778,7 +1708,6 @@ class AlertHistoryRecord(AbstractModel):
|
|
1778
1708
|
@property
|
1779
1709
|
def AlarmLevel(self):
|
1780
1710
|
"""告警级别,0代表警告(Warn),1代表提醒(Info),2代表紧急 (Critical)
|
1781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1782
1711
|
:rtype: int
|
1783
1712
|
"""
|
1784
1713
|
return self._AlarmLevel
|
@@ -1791,7 +1720,6 @@ class AlertHistoryRecord(AbstractModel):
|
|
1791
1720
|
def MonitorObjectType(self):
|
1792
1721
|
"""监控对象类型。
|
1793
1722
|
0:执行语句共用监控对象; 1:每个执行语句单独选择监控对象。
|
1794
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1795
1723
|
:rtype: int
|
1796
1724
|
"""
|
1797
1725
|
return self._MonitorObjectType
|
@@ -1846,13 +1774,10 @@ class AnalysisDimensional(AbstractModel):
|
|
1846
1774
|
def __init__(self):
|
1847
1775
|
r"""
|
1848
1776
|
:param _Name: 分析名称
|
1849
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1850
1777
|
:type Name: str
|
1851
1778
|
:param _Type: 分析类型:query,field ,original
|
1852
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1853
1779
|
:type Type: str
|
1854
1780
|
:param _Content: 分析内容
|
1855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1856
1781
|
:type Content: str
|
1857
1782
|
:param _ConfigInfo: 多维分析配置。
|
1858
1783
|
|
@@ -1905,7 +1830,6 @@ class AnalysisDimensional(AbstractModel):
|
|
1905
1830
|
@property
|
1906
1831
|
def Name(self):
|
1907
1832
|
"""分析名称
|
1908
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1909
1833
|
:rtype: str
|
1910
1834
|
"""
|
1911
1835
|
return self._Name
|
@@ -1917,7 +1841,6 @@ class AnalysisDimensional(AbstractModel):
|
|
1917
1841
|
@property
|
1918
1842
|
def Type(self):
|
1919
1843
|
"""分析类型:query,field ,original
|
1920
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1921
1844
|
:rtype: str
|
1922
1845
|
"""
|
1923
1846
|
return self._Type
|
@@ -1929,7 +1852,6 @@ class AnalysisDimensional(AbstractModel):
|
|
1929
1852
|
@property
|
1930
1853
|
def Content(self):
|
1931
1854
|
"""分析内容
|
1932
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1933
1855
|
:rtype: str
|
1934
1856
|
"""
|
1935
1857
|
return self._Content
|
@@ -2171,7 +2093,6 @@ class CallBackInfo(AbstractModel):
|
|
2171
2093
|
```
|
2172
2094
|
"Content-Type: application/json"
|
2173
2095
|
```
|
2174
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2175
2096
|
:type Headers: list of str
|
2176
2097
|
"""
|
2177
2098
|
self._Body = None
|
@@ -2207,7 +2128,6 @@ class CallBackInfo(AbstractModel):
|
|
2207
2128
|
```
|
2208
2129
|
"Content-Type: application/json"
|
2209
2130
|
```
|
2210
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2211
2131
|
:rtype: list of str
|
2212
2132
|
"""
|
2213
2133
|
return self._Headers
|
@@ -2469,7 +2389,6 @@ class CheckRechargeKafkaServerResponse(AbstractModel):
|
|
2469
2389
|
def __init__(self):
|
2470
2390
|
r"""
|
2471
2391
|
:param _Status: Kafka集群可访问状态,0:可正常访问 ...
|
2472
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2473
2392
|
:type Status: int
|
2474
2393
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2475
2394
|
:type RequestId: str
|
@@ -2480,7 +2399,6 @@ class CheckRechargeKafkaServerResponse(AbstractModel):
|
|
2480
2399
|
@property
|
2481
2400
|
def Status(self):
|
2482
2401
|
"""Kafka集群可访问状态,0:可正常访问 ...
|
2483
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2484
2402
|
:rtype: int
|
2485
2403
|
"""
|
2486
2404
|
return self._Status
|
@@ -2697,11 +2615,11 @@ class CloudProductLogTaskInfo(AbstractModel):
|
|
2697
2615
|
:param _TopicId: 日志主题ID
|
2698
2616
|
:type TopicId: str
|
2699
2617
|
:param _Extend: 日志配置拓展信息, 一般用于存储额外的日志投递配置
|
2700
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2701
2618
|
:type Extend: str
|
2702
2619
|
:param _LogType: 日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
2703
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2704
2620
|
:type LogType: str
|
2621
|
+
:param _Status: 任务状态, 0创建中 1创建完成 2 删除中
|
2622
|
+
:type Status: int
|
2705
2623
|
"""
|
2706
2624
|
self._ClsRegion = None
|
2707
2625
|
self._InstanceId = None
|
@@ -2709,6 +2627,7 @@ class CloudProductLogTaskInfo(AbstractModel):
|
|
2709
2627
|
self._TopicId = None
|
2710
2628
|
self._Extend = None
|
2711
2629
|
self._LogType = None
|
2630
|
+
self._Status = None
|
2712
2631
|
|
2713
2632
|
@property
|
2714
2633
|
def ClsRegion(self):
|
@@ -2757,7 +2676,6 @@ class CloudProductLogTaskInfo(AbstractModel):
|
|
2757
2676
|
@property
|
2758
2677
|
def Extend(self):
|
2759
2678
|
"""日志配置拓展信息, 一般用于存储额外的日志投递配置
|
2760
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2761
2679
|
:rtype: str
|
2762
2680
|
"""
|
2763
2681
|
return self._Extend
|
@@ -2769,7 +2687,6 @@ class CloudProductLogTaskInfo(AbstractModel):
|
|
2769
2687
|
@property
|
2770
2688
|
def LogType(self):
|
2771
2689
|
"""日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
2772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2773
2690
|
:rtype: str
|
2774
2691
|
"""
|
2775
2692
|
return self._LogType
|
@@ -2778,6 +2695,17 @@ class CloudProductLogTaskInfo(AbstractModel):
|
|
2778
2695
|
def LogType(self, LogType):
|
2779
2696
|
self._LogType = LogType
|
2780
2697
|
|
2698
|
+
@property
|
2699
|
+
def Status(self):
|
2700
|
+
"""任务状态, 0创建中 1创建完成 2 删除中
|
2701
|
+
:rtype: int
|
2702
|
+
"""
|
2703
|
+
return self._Status
|
2704
|
+
|
2705
|
+
@Status.setter
|
2706
|
+
def Status(self, Status):
|
2707
|
+
self._Status = Status
|
2708
|
+
|
2781
2709
|
|
2782
2710
|
def _deserialize(self, params):
|
2783
2711
|
self._ClsRegion = params.get("ClsRegion")
|
@@ -2786,6 +2714,7 @@ class CloudProductLogTaskInfo(AbstractModel):
|
|
2786
2714
|
self._TopicId = params.get("TopicId")
|
2787
2715
|
self._Extend = params.get("Extend")
|
2788
2716
|
self._LogType = params.get("LogType")
|
2717
|
+
self._Status = params.get("Status")
|
2789
2718
|
memeber_set = set(params.keys())
|
2790
2719
|
for name, value in vars(self).items():
|
2791
2720
|
property_name = name[1:]
|
@@ -2850,12 +2779,10 @@ class CollectInfo(AbstractModel):
|
|
2850
2779
|
:param _Type: 采集类型,必填字段。
|
2851
2780
|
<li>0:元数据配置。</li>
|
2852
2781
|
<li>1:指定Pod Label。</li>
|
2853
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2854
2782
|
:type Type: int
|
2855
2783
|
:param _CollectConfigs: 指定采集类型的采集配置信息。
|
2856
2784
|
<li>当Type为0时,CollectConfigs不允许为空。</li>
|
2857
2785
|
<li>当Type为1时,CollectConfigs为空时,表示选择所有Pod Label;否则CollectConfigs为指定Pod Label。</li>
|
2858
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2859
2786
|
:type CollectConfigs: list of CollectConfig
|
2860
2787
|
"""
|
2861
2788
|
self._Type = None
|
@@ -2866,7 +2793,6 @@ class CollectInfo(AbstractModel):
|
|
2866
2793
|
"""采集类型,必填字段。
|
2867
2794
|
<li>0:元数据配置。</li>
|
2868
2795
|
<li>1:指定Pod Label。</li>
|
2869
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2870
2796
|
:rtype: int
|
2871
2797
|
"""
|
2872
2798
|
return self._Type
|
@@ -2880,7 +2806,6 @@ class CollectInfo(AbstractModel):
|
|
2880
2806
|
"""指定采集类型的采集配置信息。
|
2881
2807
|
<li>当Type为0时,CollectConfigs不允许为空。</li>
|
2882
2808
|
<li>当Type为1时,CollectConfigs为空时,表示选择所有Pod Label;否则CollectConfigs为指定Pod Label。</li>
|
2883
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2884
2809
|
:rtype: list of CollectConfig
|
2885
2810
|
"""
|
2886
2811
|
return self._CollectConfigs
|
@@ -3077,22 +3002,16 @@ class ConfigExtraInfo(AbstractModel):
|
|
3077
3002
|
:param _Type: 类型:container_stdout、container_file、host_file
|
3078
3003
|
:type Type: str
|
3079
3004
|
:param _HostFile: 节点文件配置信息
|
3080
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3081
3005
|
:type HostFile: :class:`tencentcloud.cls.v20201016.models.HostFileInfo`
|
3082
3006
|
:param _ContainerFile: 容器文件路径信息
|
3083
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3084
3007
|
:type ContainerFile: :class:`tencentcloud.cls.v20201016.models.ContainerFileInfo`
|
3085
3008
|
:param _ContainerStdout: 容器标准输出信息
|
3086
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3087
3009
|
:type ContainerStdout: :class:`tencentcloud.cls.v20201016.models.ContainerStdoutInfo`
|
3088
3010
|
:param _LogFormat: 日志格式化方式
|
3089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3090
3011
|
:type LogFormat: str
|
3091
3012
|
:param _LogType: 采集的日志类型,json_log代表json格式日志,delimiter_log代表分隔符格式日志,minimalist_log代表极简日志,multiline_log代表多行日志,fullregex_log代表完整正则,默认为minimalist_log
|
3092
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3093
3013
|
:type LogType: str
|
3094
3014
|
:param _ExtractRule: 提取规则,如果设置了ExtractRule,则必须设置LogType
|
3095
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3096
3015
|
:type ExtractRule: :class:`tencentcloud.cls.v20201016.models.ExtractRuleInfo`
|
3097
3016
|
:param _ExcludePaths: 采集黑名单路径列表
|
3098
3017
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -3102,31 +3021,24 @@ class ConfigExtraInfo(AbstractModel):
|
|
3102
3021
|
:param _CreateTime: 创建时间
|
3103
3022
|
:type CreateTime: str
|
3104
3023
|
:param _UserDefineRule: 用户自定义解析字符串
|
3105
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3106
3024
|
:type UserDefineRule: str
|
3107
3025
|
:param _GroupId: 机器组ID
|
3108
3026
|
:type GroupId: str
|
3109
3027
|
:param _ConfigFlag: 自建采集配置标
|
3110
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3111
3028
|
:type ConfigFlag: str
|
3112
3029
|
:param _LogsetId: 日志集ID
|
3113
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3114
3030
|
:type LogsetId: str
|
3115
3031
|
:param _LogsetName: 日志集name
|
3116
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3117
3032
|
:type LogsetName: str
|
3118
3033
|
:param _TopicName: 日志主题name
|
3119
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3120
3034
|
:type TopicName: str
|
3121
3035
|
:param _CollectInfos: 采集相关配置信息。详情见 CollectInfo复杂类型配置。
|
3122
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3123
3036
|
:type CollectInfos: list of CollectInfo
|
3124
3037
|
:param _AdvancedConfig: 高级采集配置。 Json字符串, Key/Value定义为如下:
|
3125
3038
|
- ClsAgentFileTimeout(超时属性), 取值范围: 大于等于0的整数, 0为不超时
|
3126
3039
|
- ClsAgentMaxDepth(最大目录深度),取值范围: 大于等于0的整数
|
3127
3040
|
- ClsAgentParseFailMerge(合并解析失败日志),取值范围: true或false
|
3128
3041
|
样例:{"ClsAgentFileTimeout":0,"ClsAgentMaxDepth":10,"ClsAgentParseFailMerge":true}
|
3129
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3130
3042
|
:type AdvancedConfig: str
|
3131
3043
|
"""
|
3132
3044
|
self._ConfigExtraId = None
|
@@ -3198,7 +3110,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3198
3110
|
@property
|
3199
3111
|
def HostFile(self):
|
3200
3112
|
"""节点文件配置信息
|
3201
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3202
3113
|
:rtype: :class:`tencentcloud.cls.v20201016.models.HostFileInfo`
|
3203
3114
|
"""
|
3204
3115
|
return self._HostFile
|
@@ -3210,7 +3121,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3210
3121
|
@property
|
3211
3122
|
def ContainerFile(self):
|
3212
3123
|
"""容器文件路径信息
|
3213
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3214
3124
|
:rtype: :class:`tencentcloud.cls.v20201016.models.ContainerFileInfo`
|
3215
3125
|
"""
|
3216
3126
|
return self._ContainerFile
|
@@ -3222,7 +3132,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3222
3132
|
@property
|
3223
3133
|
def ContainerStdout(self):
|
3224
3134
|
"""容器标准输出信息
|
3225
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3226
3135
|
:rtype: :class:`tencentcloud.cls.v20201016.models.ContainerStdoutInfo`
|
3227
3136
|
"""
|
3228
3137
|
return self._ContainerStdout
|
@@ -3234,7 +3143,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3234
3143
|
@property
|
3235
3144
|
def LogFormat(self):
|
3236
3145
|
"""日志格式化方式
|
3237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3238
3146
|
:rtype: str
|
3239
3147
|
"""
|
3240
3148
|
return self._LogFormat
|
@@ -3246,7 +3154,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3246
3154
|
@property
|
3247
3155
|
def LogType(self):
|
3248
3156
|
"""采集的日志类型,json_log代表json格式日志,delimiter_log代表分隔符格式日志,minimalist_log代表极简日志,multiline_log代表多行日志,fullregex_log代表完整正则,默认为minimalist_log
|
3249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3250
3157
|
:rtype: str
|
3251
3158
|
"""
|
3252
3159
|
return self._LogType
|
@@ -3258,7 +3165,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3258
3165
|
@property
|
3259
3166
|
def ExtractRule(self):
|
3260
3167
|
"""提取规则,如果设置了ExtractRule,则必须设置LogType
|
3261
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3262
3168
|
:rtype: :class:`tencentcloud.cls.v20201016.models.ExtractRuleInfo`
|
3263
3169
|
"""
|
3264
3170
|
return self._ExtractRule
|
@@ -3304,7 +3210,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3304
3210
|
@property
|
3305
3211
|
def UserDefineRule(self):
|
3306
3212
|
"""用户自定义解析字符串
|
3307
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3308
3213
|
:rtype: str
|
3309
3214
|
"""
|
3310
3215
|
return self._UserDefineRule
|
@@ -3327,7 +3232,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3327
3232
|
@property
|
3328
3233
|
def ConfigFlag(self):
|
3329
3234
|
"""自建采集配置标
|
3330
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3331
3235
|
:rtype: str
|
3332
3236
|
"""
|
3333
3237
|
return self._ConfigFlag
|
@@ -3339,7 +3243,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3339
3243
|
@property
|
3340
3244
|
def LogsetId(self):
|
3341
3245
|
"""日志集ID
|
3342
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3343
3246
|
:rtype: str
|
3344
3247
|
"""
|
3345
3248
|
return self._LogsetId
|
@@ -3351,7 +3254,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3351
3254
|
@property
|
3352
3255
|
def LogsetName(self):
|
3353
3256
|
"""日志集name
|
3354
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3355
3257
|
:rtype: str
|
3356
3258
|
"""
|
3357
3259
|
return self._LogsetName
|
@@ -3363,7 +3265,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3363
3265
|
@property
|
3364
3266
|
def TopicName(self):
|
3365
3267
|
"""日志主题name
|
3366
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3367
3268
|
:rtype: str
|
3368
3269
|
"""
|
3369
3270
|
return self._TopicName
|
@@ -3375,7 +3276,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3375
3276
|
@property
|
3376
3277
|
def CollectInfos(self):
|
3377
3278
|
"""采集相关配置信息。详情见 CollectInfo复杂类型配置。
|
3378
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3379
3279
|
:rtype: list of CollectInfo
|
3380
3280
|
"""
|
3381
3281
|
return self._CollectInfos
|
@@ -3391,7 +3291,6 @@ class ConfigExtraInfo(AbstractModel):
|
|
3391
3291
|
- ClsAgentMaxDepth(最大目录深度),取值范围: 大于等于0的整数
|
3392
3292
|
- ClsAgentParseFailMerge(合并解析失败日志),取值范围: true或false
|
3393
3293
|
样例:{"ClsAgentFileTimeout":0,"ClsAgentMaxDepth":10,"ClsAgentParseFailMerge":true}
|
3394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3395
3294
|
:rtype: str
|
3396
3295
|
"""
|
3397
3296
|
return self._AdvancedConfig
|
@@ -3461,13 +3360,10 @@ class ConfigInfo(AbstractModel):
|
|
3461
3360
|
:param _ConfigId: 采集规则配置ID
|
3462
3361
|
:type ConfigId: str
|
3463
3362
|
:param _Name: 采集规则配置名称
|
3464
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3465
3363
|
:type Name: str
|
3466
3364
|
:param _LogFormat: 日志格式化方式
|
3467
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3468
3365
|
:type LogFormat: str
|
3469
3366
|
:param _Path: 日志采集路径
|
3470
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3471
3367
|
:type Path: str
|
3472
3368
|
:param _LogType: 采集的日志类型。
|
3473
3369
|
- json_log代表:JSON-文件日志(详见[使用 JSON 提取模式采集日志](https://cloud.tencent.com/document/product/614/17419));
|
@@ -3479,10 +3375,8 @@ class ConfigInfo(AbstractModel):
|
|
3479
3375
|
- user_define_log代表:组合解析(适用于多格式嵌套的日志,详见[使用组合解析提取模式采集日志](https://cloud.tencent.com/document/product/614/61310));
|
3480
3376
|
- service_syslog代表:syslog 采集(详见[采集 Syslog](https://cloud.tencent.com/document/product/614/81454));
|
3481
3377
|
- windows_event_log代表:Windows事件日志(详见[采集 Windows 事件日志](https://cloud.tencent.com/document/product/614/96678))。
|
3482
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3483
3378
|
:type LogType: str
|
3484
3379
|
:param _ExtractRule: 提取规则,如果设置了ExtractRule,则必须设置LogType
|
3485
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3486
3380
|
:type ExtractRule: :class:`tencentcloud.cls.v20201016.models.ExtractRuleInfo`
|
3487
3381
|
:param _ExcludePaths: 采集黑名单路径列表
|
3488
3382
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -3490,12 +3384,10 @@ class ConfigInfo(AbstractModel):
|
|
3490
3384
|
:param _Output: 采集配置所属日志主题ID即TopicId
|
3491
3385
|
:type Output: str
|
3492
3386
|
:param _UpdateTime: 更新时间
|
3493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3494
3387
|
:type UpdateTime: str
|
3495
3388
|
:param _CreateTime: 创建时间
|
3496
3389
|
:type CreateTime: str
|
3497
3390
|
:param _UserDefineRule: 用户自定义解析字符串,详见[使用组合解析提取模式采集日志](https://cloud.tencent.com/document/product/614/61310)。
|
3498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3499
3391
|
:type UserDefineRule: str
|
3500
3392
|
:param _AdvancedConfig: 高级采集配置。 Json字符串, Key/Value定义为如下:
|
3501
3393
|
- ClsAgentFileTimeout(超时属性), 取值范围: 大于等于0的整数, 0为不超时
|
@@ -3505,7 +3397,6 @@ class ConfigInfo(AbstractModel):
|
|
3505
3397
|
`{\"ClsAgentFileTimeout\":0,\"ClsAgentMaxDepth\":10,\"ClsAgentParseFailMerge\":true}`
|
3506
3398
|
|
3507
3399
|
控制台默认占位值:`{\"ClsAgentDefault\":0}`
|
3508
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3509
3400
|
:type AdvancedConfig: str
|
3510
3401
|
"""
|
3511
3402
|
self._ConfigId = None
|
@@ -3535,7 +3426,6 @@ class ConfigInfo(AbstractModel):
|
|
3535
3426
|
@property
|
3536
3427
|
def Name(self):
|
3537
3428
|
"""采集规则配置名称
|
3538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3539
3429
|
:rtype: str
|
3540
3430
|
"""
|
3541
3431
|
return self._Name
|
@@ -3547,7 +3437,6 @@ class ConfigInfo(AbstractModel):
|
|
3547
3437
|
@property
|
3548
3438
|
def LogFormat(self):
|
3549
3439
|
"""日志格式化方式
|
3550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3551
3440
|
:rtype: str
|
3552
3441
|
"""
|
3553
3442
|
return self._LogFormat
|
@@ -3559,7 +3448,6 @@ class ConfigInfo(AbstractModel):
|
|
3559
3448
|
@property
|
3560
3449
|
def Path(self):
|
3561
3450
|
"""日志采集路径
|
3562
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3563
3451
|
:rtype: str
|
3564
3452
|
"""
|
3565
3453
|
return self._Path
|
@@ -3580,7 +3468,6 @@ class ConfigInfo(AbstractModel):
|
|
3580
3468
|
- user_define_log代表:组合解析(适用于多格式嵌套的日志,详见[使用组合解析提取模式采集日志](https://cloud.tencent.com/document/product/614/61310));
|
3581
3469
|
- service_syslog代表:syslog 采集(详见[采集 Syslog](https://cloud.tencent.com/document/product/614/81454));
|
3582
3470
|
- windows_event_log代表:Windows事件日志(详见[采集 Windows 事件日志](https://cloud.tencent.com/document/product/614/96678))。
|
3583
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3584
3471
|
:rtype: str
|
3585
3472
|
"""
|
3586
3473
|
return self._LogType
|
@@ -3592,7 +3479,6 @@ class ConfigInfo(AbstractModel):
|
|
3592
3479
|
@property
|
3593
3480
|
def ExtractRule(self):
|
3594
3481
|
"""提取规则,如果设置了ExtractRule,则必须设置LogType
|
3595
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3596
3482
|
:rtype: :class:`tencentcloud.cls.v20201016.models.ExtractRuleInfo`
|
3597
3483
|
"""
|
3598
3484
|
return self._ExtractRule
|
@@ -3627,7 +3513,6 @@ class ConfigInfo(AbstractModel):
|
|
3627
3513
|
@property
|
3628
3514
|
def UpdateTime(self):
|
3629
3515
|
"""更新时间
|
3630
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3631
3516
|
:rtype: str
|
3632
3517
|
"""
|
3633
3518
|
return self._UpdateTime
|
@@ -3650,7 +3535,6 @@ class ConfigInfo(AbstractModel):
|
|
3650
3535
|
@property
|
3651
3536
|
def UserDefineRule(self):
|
3652
3537
|
"""用户自定义解析字符串,详见[使用组合解析提取模式采集日志](https://cloud.tencent.com/document/product/614/61310)。
|
3653
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3654
3538
|
:rtype: str
|
3655
3539
|
"""
|
3656
3540
|
return self._UserDefineRule
|
@@ -3669,7 +3553,6 @@ class ConfigInfo(AbstractModel):
|
|
3669
3553
|
`{\"ClsAgentFileTimeout\":0,\"ClsAgentMaxDepth\":10,\"ClsAgentParseFailMerge\":true}`
|
3670
3554
|
|
3671
3555
|
控制台默认占位值:`{\"ClsAgentDefault\":0}`
|
3672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3673
3556
|
:rtype: str
|
3674
3557
|
"""
|
3675
3558
|
return self._AdvancedConfig
|
@@ -4008,10 +3891,8 @@ class ConsumerContent(AbstractModel):
|
|
4008
3891
|
r"""
|
4009
3892
|
:param _EnableTag: 是否投递 TAG 信息。
|
4010
3893
|
当EnableTag为true时,表示投递TAG元信息。
|
4011
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4012
3894
|
:type EnableTag: bool
|
4013
3895
|
:param _MetaFields: 需要投递的元数据列表,目前仅支持:\_\_SOURCE\_\_,\_\_FILENAME\_\_,\_\_TIMESTAMP\_\_,\_\_HOSTNAME\_\_和\_\_PKGID\_\_
|
4014
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4015
3896
|
:type MetaFields: list of str
|
4016
3897
|
:param _TagJsonNotTiled: 当EnableTag为true时,必须填写TagJsonNotTiled字段。
|
4017
3898
|
TagJsonNotTiled用于标识tag信息是否json平铺。
|
@@ -4023,10 +3904,8 @@ TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
4023
3904
|
TagJsonNotTiled为false时平铺,示例:
|
4024
3905
|
TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
4025
3906
|
平铺:`{"__TAG__.fieldA":200,"__TAG__.fieldB":"text"}`
|
4026
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4027
3907
|
:type TagJsonNotTiled: bool
|
4028
3908
|
:param _TimestampAccuracy: 投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1。
|
4029
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4030
3909
|
:type TimestampAccuracy: int
|
4031
3910
|
:param _JsonType: 投递Json格式。
|
4032
3911
|
JsonType为0:和原始日志一致,不转义。示例:
|
@@ -4036,7 +3915,6 @@ JsonType为0:和原始日志一致,不转义。示例:
|
|
4036
3915
|
JsonType为1:转义。示例:
|
4037
3916
|
日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
|
4038
3917
|
投递到Ckafka:`{"a":"aa","b":"{\"b1\":\"b1b1\", \"c1\":\"c1c1\"}"}`
|
4039
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4040
3918
|
:type JsonType: int
|
4041
3919
|
"""
|
4042
3920
|
self._EnableTag = None
|
@@ -4049,7 +3927,6 @@ JsonType为1:转义。示例:
|
|
4049
3927
|
def EnableTag(self):
|
4050
3928
|
"""是否投递 TAG 信息。
|
4051
3929
|
当EnableTag为true时,表示投递TAG元信息。
|
4052
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4053
3930
|
:rtype: bool
|
4054
3931
|
"""
|
4055
3932
|
return self._EnableTag
|
@@ -4061,7 +3938,6 @@ JsonType为1:转义。示例:
|
|
4061
3938
|
@property
|
4062
3939
|
def MetaFields(self):
|
4063
3940
|
"""需要投递的元数据列表,目前仅支持:\_\_SOURCE\_\_,\_\_FILENAME\_\_,\_\_TIMESTAMP\_\_,\_\_HOSTNAME\_\_和\_\_PKGID\_\_
|
4064
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4065
3941
|
:rtype: list of str
|
4066
3942
|
"""
|
4067
3943
|
return self._MetaFields
|
@@ -4082,7 +3958,6 @@ TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
4082
3958
|
TagJsonNotTiled为false时平铺,示例:
|
4083
3959
|
TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
4084
3960
|
平铺:`{"__TAG__.fieldA":200,"__TAG__.fieldB":"text"}`
|
4085
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4086
3961
|
:rtype: bool
|
4087
3962
|
"""
|
4088
3963
|
return self._TagJsonNotTiled
|
@@ -4094,7 +3969,6 @@ TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
|
|
4094
3969
|
@property
|
4095
3970
|
def TimestampAccuracy(self):
|
4096
3971
|
"""投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1。
|
4097
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4098
3972
|
:rtype: int
|
4099
3973
|
"""
|
4100
3974
|
return self._TimestampAccuracy
|
@@ -4113,7 +3987,6 @@ JsonType为0:和原始日志一致,不转义。示例:
|
|
4113
3987
|
JsonType为1:转义。示例:
|
4114
3988
|
日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
|
4115
3989
|
投递到Ckafka:`{"a":"aa","b":"{\"b1\":\"b1b1\", \"c1\":\"c1c1\"}"}`
|
4116
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4117
3990
|
:rtype: int
|
4118
3991
|
"""
|
4119
3992
|
return self._JsonType
|
@@ -4160,10 +4033,8 @@ class ContainerFileInfo(AbstractModel):
|
|
4160
4033
|
注意:此字段可能返回 null,表示取不到有效值。
|
4161
4034
|
:type IncludeLabels: list of str
|
4162
4035
|
:param _WorkLoad: 工作负载信息
|
4163
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4164
4036
|
:type WorkLoad: :class:`tencentcloud.cls.v20201016.models.ContainerWorkLoadInfo`
|
4165
4037
|
:param _ExcludeNamespace: 需要排除的namespace可以多个,用分隔号分割,例如A,B
|
4166
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4167
4038
|
:type ExcludeNamespace: str
|
4168
4039
|
:param _ExcludeLabels: 需要排除的pod标签信息
|
4169
4040
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -4253,7 +4124,6 @@ class ContainerFileInfo(AbstractModel):
|
|
4253
4124
|
@property
|
4254
4125
|
def WorkLoad(self):
|
4255
4126
|
"""工作负载信息
|
4256
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4257
4127
|
:rtype: :class:`tencentcloud.cls.v20201016.models.ContainerWorkLoadInfo`
|
4258
4128
|
"""
|
4259
4129
|
return self._WorkLoad
|
@@ -4265,7 +4135,6 @@ class ContainerFileInfo(AbstractModel):
|
|
4265
4135
|
@property
|
4266
4136
|
def ExcludeNamespace(self):
|
4267
4137
|
"""需要排除的namespace可以多个,用分隔号分割,例如A,B
|
4268
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4269
4138
|
:rtype: str
|
4270
4139
|
"""
|
4271
4140
|
return self._ExcludeNamespace
|
@@ -4337,10 +4206,8 @@ class ContainerStdoutInfo(AbstractModel):
|
|
4337
4206
|
:param _AllContainers: 是否所有容器
|
4338
4207
|
:type AllContainers: bool
|
4339
4208
|
:param _Container: container为空表所有的,不为空采集指定的容器
|
4340
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4341
4209
|
:type Container: str
|
4342
4210
|
:param _Namespace: namespace可以多个,用分隔号分割,例如A,B;为空或者没有这个字段,表示所有namespace
|
4343
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4344
4211
|
:type Namespace: str
|
4345
4212
|
:param _IncludeLabels: pod标签信息
|
4346
4213
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -4349,7 +4216,6 @@ class ContainerStdoutInfo(AbstractModel):
|
|
4349
4216
|
注意:此字段可能返回 null,表示取不到有效值。
|
4350
4217
|
:type WorkLoads: list of ContainerWorkLoadInfo
|
4351
4218
|
:param _ExcludeNamespace: 需要排除的namespace可以多个,用分隔号分割,例如A,B
|
4352
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4353
4219
|
:type ExcludeNamespace: str
|
4354
4220
|
:param _ExcludeLabels: 需要排除的pod标签信息
|
4355
4221
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -4381,7 +4247,6 @@ class ContainerStdoutInfo(AbstractModel):
|
|
4381
4247
|
@property
|
4382
4248
|
def Container(self):
|
4383
4249
|
"""container为空表所有的,不为空采集指定的容器
|
4384
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4385
4250
|
:rtype: str
|
4386
4251
|
"""
|
4387
4252
|
return self._Container
|
@@ -4393,7 +4258,6 @@ class ContainerStdoutInfo(AbstractModel):
|
|
4393
4258
|
@property
|
4394
4259
|
def Namespace(self):
|
4395
4260
|
"""namespace可以多个,用分隔号分割,例如A,B;为空或者没有这个字段,表示所有namespace
|
4396
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4397
4261
|
:rtype: str
|
4398
4262
|
"""
|
4399
4263
|
return self._Namespace
|
@@ -4429,7 +4293,6 @@ class ContainerStdoutInfo(AbstractModel):
|
|
4429
4293
|
@property
|
4430
4294
|
def ExcludeNamespace(self):
|
4431
4295
|
"""需要排除的namespace可以多个,用分隔号分割,例如A,B
|
4432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4433
4296
|
:rtype: str
|
4434
4297
|
"""
|
4435
4298
|
return self._ExcludeNamespace
|
@@ -7150,7 +7013,6 @@ class CreateCosRechargeResponse(AbstractModel):
|
|
7150
7013
|
def __init__(self):
|
7151
7014
|
r"""
|
7152
7015
|
:param _Id: COS导入任务id
|
7153
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7154
7016
|
:type Id: str
|
7155
7017
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7156
7018
|
:type RequestId: str
|
@@ -7161,7 +7023,6 @@ class CreateCosRechargeResponse(AbstractModel):
|
|
7161
7023
|
@property
|
7162
7024
|
def Id(self):
|
7163
7025
|
"""COS导入任务id
|
7164
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7165
7026
|
:rtype: str
|
7166
7027
|
"""
|
7167
7028
|
return self._Id
|
@@ -12429,7 +12290,6 @@ class DescribeAlarmNoticesResponse(AbstractModel):
|
|
12429
12290
|
def __init__(self):
|
12430
12291
|
r"""
|
12431
12292
|
:param _AlarmNotices: 告警通知模板列表。
|
12432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12433
12293
|
:type AlarmNotices: list of AlarmNotice
|
12434
12294
|
:param _TotalCount: 符合条件的告警通知模板总数。
|
12435
12295
|
:type TotalCount: int
|
@@ -12443,7 +12303,6 @@ class DescribeAlarmNoticesResponse(AbstractModel):
|
|
12443
12303
|
@property
|
12444
12304
|
def AlarmNotices(self):
|
12445
12305
|
"""告警通知模板列表。
|
12446
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12447
12306
|
:rtype: list of AlarmNotice
|
12448
12307
|
"""
|
12449
12308
|
return self._AlarmNotices
|
@@ -13673,7 +13532,6 @@ class DescribeConsumerResponse(AbstractModel):
|
|
13673
13532
|
:param _Ckafka: CKafka的描述
|
13674
13533
|
:type Ckafka: :class:`tencentcloud.cls.v20201016.models.Ckafka`
|
13675
13534
|
:param _Compression: 压缩方式[0:NONE;2:SNAPPY;3:LZ4]
|
13676
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13677
13535
|
:type Compression: int
|
13678
13536
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13679
13537
|
:type RequestId: str
|
@@ -13733,7 +13591,6 @@ class DescribeConsumerResponse(AbstractModel):
|
|
13733
13591
|
@property
|
13734
13592
|
def Compression(self):
|
13735
13593
|
"""压缩方式[0:NONE;2:SNAPPY;3:LZ4]
|
13736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13737
13594
|
:rtype: int
|
13738
13595
|
"""
|
13739
13596
|
return self._Compression
|
@@ -13841,7 +13698,6 @@ class DescribeCosRechargesResponse(AbstractModel):
|
|
13841
13698
|
def __init__(self):
|
13842
13699
|
r"""
|
13843
13700
|
:param _Data: 见: CosRechargeInfo 结构描述
|
13844
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13845
13701
|
:type Data: list of CosRechargeInfo
|
13846
13702
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13847
13703
|
:type RequestId: str
|
@@ -13852,7 +13708,6 @@ class DescribeCosRechargesResponse(AbstractModel):
|
|
13852
13708
|
@property
|
13853
13709
|
def Data(self):
|
13854
13710
|
"""见: CosRechargeInfo 结构描述
|
13855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13856
13711
|
:rtype: list of CosRechargeInfo
|
13857
13712
|
"""
|
13858
13713
|
return self._Data
|
@@ -14550,13 +14405,11 @@ class DescribeIndexResponse(AbstractModel):
|
|
14550
14405
|
:param _IncludeInternalFields: 内置保留字段(`__FILENAME__`,`__HOSTNAME__`及`__SOURCE__`)是否包含至全文索引
|
14551
14406
|
* false:不包含
|
14552
14407
|
* true:包含
|
14553
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14554
14408
|
:type IncludeInternalFields: bool
|
14555
14409
|
:param _MetadataFlag: 元数据字段(前缀为`__TAG__`的字段)是否包含至全文索引
|
14556
14410
|
* 0:仅包含开启键值索引的元数据字段
|
14557
14411
|
* 1:包含所有元数据字段
|
14558
14412
|
* 2:不包含任何元数据字段
|
14559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14560
14413
|
:type MetadataFlag: int
|
14561
14414
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14562
14415
|
:type RequestId: str
|
@@ -14619,7 +14472,6 @@ class DescribeIndexResponse(AbstractModel):
|
|
14619
14472
|
"""内置保留字段(`__FILENAME__`,`__HOSTNAME__`及`__SOURCE__`)是否包含至全文索引
|
14620
14473
|
* false:不包含
|
14621
14474
|
* true:包含
|
14622
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14623
14475
|
:rtype: bool
|
14624
14476
|
"""
|
14625
14477
|
return self._IncludeInternalFields
|
@@ -14634,7 +14486,6 @@ class DescribeIndexResponse(AbstractModel):
|
|
14634
14486
|
* 0:仅包含开启键值索引的元数据字段
|
14635
14487
|
* 1:包含所有元数据字段
|
14636
14488
|
* 2:不包含任何元数据字段
|
14637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14638
14489
|
:rtype: int
|
14639
14490
|
"""
|
14640
14491
|
return self._MetadataFlag
|
@@ -15756,7 +15607,6 @@ class DescribeMachineGroupsResponse(AbstractModel):
|
|
15756
15607
|
def __init__(self):
|
15757
15608
|
r"""
|
15758
15609
|
:param _MachineGroups: 机器组信息列表
|
15759
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15760
15610
|
:type MachineGroups: list of MachineGroupInfo
|
15761
15611
|
:param _TotalCount: 分页的总数目
|
15762
15612
|
:type TotalCount: int
|
@@ -15770,7 +15620,6 @@ class DescribeMachineGroupsResponse(AbstractModel):
|
|
15770
15620
|
@property
|
15771
15621
|
def MachineGroups(self):
|
15772
15622
|
"""机器组信息列表
|
15773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15774
15623
|
:rtype: list of MachineGroupInfo
|
15775
15624
|
"""
|
15776
15625
|
return self._MachineGroups
|
@@ -15973,7 +15822,6 @@ class DescribeMachinesResponse(AbstractModel):
|
|
15973
15822
|
:param _ServiceLogging: 是否开启服务日志
|
15974
15823
|
:type ServiceLogging: bool
|
15975
15824
|
:param _TotalCount: 总数目
|
15976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15977
15825
|
:type TotalCount: int
|
15978
15826
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15979
15827
|
:type RequestId: str
|
@@ -16056,7 +15904,6 @@ class DescribeMachinesResponse(AbstractModel):
|
|
16056
15904
|
@property
|
16057
15905
|
def TotalCount(self):
|
16058
15906
|
"""总数目
|
16059
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16060
15907
|
:rtype: int
|
16061
15908
|
"""
|
16062
15909
|
return self._TotalCount
|
@@ -16192,7 +16039,6 @@ class DescribeNoticeContentsResponse(AbstractModel):
|
|
16192
16039
|
def __init__(self):
|
16193
16040
|
r"""
|
16194
16041
|
:param _NoticeContents: 通知内容模板列表。
|
16195
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16196
16042
|
:type NoticeContents: list of NoticeContentTemplate
|
16197
16043
|
:param _TotalCount: 符合条件的通知内容模板总数。
|
16198
16044
|
:type TotalCount: int
|
@@ -16206,7 +16052,6 @@ class DescribeNoticeContentsResponse(AbstractModel):
|
|
16206
16052
|
@property
|
16207
16053
|
def NoticeContents(self):
|
16208
16054
|
"""通知内容模板列表。
|
16209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16210
16055
|
:rtype: list of NoticeContentTemplate
|
16211
16056
|
"""
|
16212
16057
|
return self._NoticeContents
|
@@ -16755,7 +16600,6 @@ class DescribeShippersResponse(AbstractModel):
|
|
16755
16600
|
def __init__(self):
|
16756
16601
|
r"""
|
16757
16602
|
:param _Shippers: 投递规则列表
|
16758
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16759
16603
|
:type Shippers: list of ShipperInfo
|
16760
16604
|
:param _TotalCount: 本次查询获取到的总数
|
16761
16605
|
:type TotalCount: int
|
@@ -16769,7 +16613,6 @@ class DescribeShippersResponse(AbstractModel):
|
|
16769
16613
|
@property
|
16770
16614
|
def Shippers(self):
|
16771
16615
|
"""投递规则列表
|
16772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16773
16616
|
:rtype: list of ShipperInfo
|
16774
16617
|
"""
|
16775
16618
|
return self._Shippers
|
@@ -17111,7 +16954,6 @@ class DescribeWebCallbacksResponse(AbstractModel):
|
|
17111
16954
|
def __init__(self):
|
17112
16955
|
r"""
|
17113
16956
|
:param _WebCallbacks: 告警渠道回调配置列表。
|
17114
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17115
16957
|
:type WebCallbacks: list of WebCallbackInfo
|
17116
16958
|
:param _TotalCount: 符合条件的通知内容配置总数。
|
17117
16959
|
:type TotalCount: int
|
@@ -17125,7 +16967,6 @@ class DescribeWebCallbacksResponse(AbstractModel):
|
|
17125
16967
|
@property
|
17126
16968
|
def WebCallbacks(self):
|
17127
16969
|
"""告警渠道回调配置列表。
|
17128
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17129
16970
|
:rtype: list of WebCallbackInfo
|
17130
16971
|
"""
|
17131
16972
|
return self._WebCallbacks
|
@@ -26805,7 +26646,6 @@ class PreviewKafkaRechargeResponse(AbstractModel):
|
|
26805
26646
|
:param _LogSample: 日志样例,PreviewType为2时返回
|
26806
26647
|
:type LogSample: str
|
26807
26648
|
:param _LogData: 日志预览结果
|
26808
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26809
26649
|
:type LogData: str
|
26810
26650
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
26811
26651
|
:type RequestId: str
|
@@ -26828,7 +26668,6 @@ class PreviewKafkaRechargeResponse(AbstractModel):
|
|
26828
26668
|
@property
|
26829
26669
|
def LogData(self):
|
26830
26670
|
"""日志预览结果
|
26831
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26832
26671
|
:rtype: str
|
26833
26672
|
"""
|
26834
26673
|
return self._LogData
|
@@ -28148,15 +27987,12 @@ class SearchCosRechargeInfoResponse(AbstractModel):
|
|
28148
27987
|
def __init__(self):
|
28149
27988
|
r"""
|
28150
27989
|
:param _Data: 匹配到的存储桶下的某个文件的前几行数据
|
28151
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28152
27990
|
:type Data: list of str
|
28153
27991
|
:param _Sum: 匹配到的存储桶下的文件个数
|
28154
27992
|
:type Sum: int
|
28155
27993
|
:param _Path: 当前预览文件路径
|
28156
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28157
27994
|
:type Path: str
|
28158
27995
|
:param _Msg: 预览获取数据失败原因
|
28159
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28160
27996
|
:type Msg: str
|
28161
27997
|
:param _Status: 状态
|
28162
27998
|
:type Status: int
|
@@ -28173,7 +28009,6 @@ class SearchCosRechargeInfoResponse(AbstractModel):
|
|
28173
28009
|
@property
|
28174
28010
|
def Data(self):
|
28175
28011
|
"""匹配到的存储桶下的某个文件的前几行数据
|
28176
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28177
28012
|
:rtype: list of str
|
28178
28013
|
"""
|
28179
28014
|
return self._Data
|
@@ -28196,7 +28031,6 @@ class SearchCosRechargeInfoResponse(AbstractModel):
|
|
28196
28031
|
@property
|
28197
28032
|
def Path(self):
|
28198
28033
|
"""当前预览文件路径
|
28199
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28200
28034
|
:rtype: str
|
28201
28035
|
"""
|
28202
28036
|
return self._Path
|
@@ -28208,7 +28042,6 @@ class SearchCosRechargeInfoResponse(AbstractModel):
|
|
28208
28042
|
@property
|
28209
28043
|
def Msg(self):
|
28210
28044
|
"""预览获取数据失败原因
|
28211
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28212
28045
|
:rtype: str
|
28213
28046
|
"""
|
28214
28047
|
return self._Msg
|
@@ -28812,7 +28645,6 @@ class SearchLogResponse(AbstractModel):
|
|
28812
28645
|
注意:此字段可能返回 null,表示取不到有效值。
|
28813
28646
|
:type Columns: list of Column
|
28814
28647
|
:param _SamplingRate: 本次统计分析使用的采样率
|
28815
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28816
28648
|
:type SamplingRate: float
|
28817
28649
|
:param _Topics: 使用多日志主题检索时,各个日志主题的基本信息,例如报错信息。
|
28818
28650
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -28935,7 +28767,6 @@ class SearchLogResponse(AbstractModel):
|
|
28935
28767
|
@property
|
28936
28768
|
def SamplingRate(self):
|
28937
28769
|
"""本次统计分析使用的采样率
|
28938
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
28939
28770
|
:rtype: float
|
28940
28771
|
"""
|
28941
28772
|
return self._SamplingRate
|