tencentcloud-sdk-python-cls 3.0.860__tar.gz → 3.0.861__tar.gz
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-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud/cls/v20201016/models.py +26 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/setup.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.860 → tencentcloud-sdk-python-cls-3.0.861}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -4646,6 +4646,12 @@ class LogContextInfo(AbstractModel):
|
|
|
4646
4646
|
:param HostName: 日志来源主机名称
|
|
4647
4647
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4648
4648
|
:type HostName: str
|
|
4649
|
+
:param RawLog: 原始日志(仅在日志创建索引异常时有值)
|
|
4650
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4651
|
+
:type RawLog: str
|
|
4652
|
+
:param IndexStatus: 日志创建索引异常原因(仅在日志创建索引异常时有值)
|
|
4653
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4654
|
+
:type IndexStatus: str
|
|
4649
4655
|
"""
|
|
4650
4656
|
self.Source = None
|
|
4651
4657
|
self.Filename = None
|
|
@@ -4654,6 +4660,8 @@ class LogContextInfo(AbstractModel):
|
|
|
4654
4660
|
self.PkgLogId = None
|
|
4655
4661
|
self.BTime = None
|
|
4656
4662
|
self.HostName = None
|
|
4663
|
+
self.RawLog = None
|
|
4664
|
+
self.IndexStatus = None
|
|
4657
4665
|
|
|
4658
4666
|
|
|
4659
4667
|
def _deserialize(self, params):
|
|
@@ -4664,6 +4672,8 @@ class LogContextInfo(AbstractModel):
|
|
|
4664
4672
|
self.PkgLogId = params.get("PkgLogId")
|
|
4665
4673
|
self.BTime = params.get("BTime")
|
|
4666
4674
|
self.HostName = params.get("HostName")
|
|
4675
|
+
self.RawLog = params.get("RawLog")
|
|
4676
|
+
self.IndexStatus = params.get("IndexStatus")
|
|
4667
4677
|
memeber_set = set(params.keys())
|
|
4668
4678
|
for name, value in vars(self).items():
|
|
4669
4679
|
if name in memeber_set:
|
|
@@ -4700,6 +4710,12 @@ class LogInfo(AbstractModel):
|
|
|
4700
4710
|
:param HostName: 日志来源主机名称
|
|
4701
4711
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4702
4712
|
:type HostName: str
|
|
4713
|
+
:param RawLog: 原始日志(仅在日志创建索引异常时有值)
|
|
4714
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4715
|
+
:type RawLog: str
|
|
4716
|
+
:param IndexStatus: 日志创建索引异常原因(仅在日志创建索引异常时有值)
|
|
4717
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4718
|
+
:type IndexStatus: str
|
|
4703
4719
|
"""
|
|
4704
4720
|
self.Time = None
|
|
4705
4721
|
self.TopicId = None
|
|
@@ -4710,6 +4726,8 @@ class LogInfo(AbstractModel):
|
|
|
4710
4726
|
self.PkgLogId = None
|
|
4711
4727
|
self.LogJson = None
|
|
4712
4728
|
self.HostName = None
|
|
4729
|
+
self.RawLog = None
|
|
4730
|
+
self.IndexStatus = None
|
|
4713
4731
|
|
|
4714
4732
|
|
|
4715
4733
|
def _deserialize(self, params):
|
|
@@ -4722,6 +4740,8 @@ class LogInfo(AbstractModel):
|
|
|
4722
4740
|
self.PkgLogId = params.get("PkgLogId")
|
|
4723
4741
|
self.LogJson = params.get("LogJson")
|
|
4724
4742
|
self.HostName = params.get("HostName")
|
|
4743
|
+
self.RawLog = params.get("RawLog")
|
|
4744
|
+
self.IndexStatus = params.get("IndexStatus")
|
|
4725
4745
|
memeber_set = set(params.keys())
|
|
4726
4746
|
for name, value in vars(self).items():
|
|
4727
4747
|
if name in memeber_set:
|
|
@@ -6316,6 +6336,10 @@ class SearchLogRequest(AbstractModel):
|
|
|
6316
6336
|
1:不采样,即精确分析
|
|
6317
6337
|
默认值为1
|
|
6318
6338
|
:type SamplingRate: float
|
|
6339
|
+
:param SyntaxRule: 检索语法规则,默认值为0。
|
|
6340
|
+
0:Lucene语法,1:CQL语法。
|
|
6341
|
+
详细说明参见https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules
|
|
6342
|
+
:type SyntaxRule: int
|
|
6319
6343
|
"""
|
|
6320
6344
|
self.From = None
|
|
6321
6345
|
self.To = None
|
|
@@ -6326,6 +6350,7 @@ class SearchLogRequest(AbstractModel):
|
|
|
6326
6350
|
self.Sort = None
|
|
6327
6351
|
self.UseNewAnalysis = None
|
|
6328
6352
|
self.SamplingRate = None
|
|
6353
|
+
self.SyntaxRule = None
|
|
6329
6354
|
|
|
6330
6355
|
|
|
6331
6356
|
def _deserialize(self, params):
|
|
@@ -6338,6 +6363,7 @@ class SearchLogRequest(AbstractModel):
|
|
|
6338
6363
|
self.Sort = params.get("Sort")
|
|
6339
6364
|
self.UseNewAnalysis = params.get("UseNewAnalysis")
|
|
6340
6365
|
self.SamplingRate = params.get("SamplingRate")
|
|
6366
|
+
self.SyntaxRule = params.get("SyntaxRule")
|
|
6341
6367
|
memeber_set = set(params.keys())
|
|
6342
6368
|
for name, value in vars(self).items():
|
|
6343
6369
|
if name in memeber_set:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|