tencentcloud-sdk-python-cls 3.0.1355__tar.gz → 3.0.1356__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud/cls/v20201016/models.py +40 -5
  5. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cls-3.0.1356/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cls-3.0.1355/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud/cls/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud/cls/v20201016/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  13. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cls-3.0.1355 → tencentcloud-sdk-python-cls-3.0.1356}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1355
3
+ Version: 3.0.1356
4
4
  Summary: Tencent Cloud Cls SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cls',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1355"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1356"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cls SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1355'
17
+ __version__ = '3.0.1356'
@@ -18572,15 +18572,15 @@ class GroupTriggerConditionInfo(AbstractModel):
18572
18572
 
18573
18573
 
18574
18574
  class HighLightItem(AbstractModel):
18575
- """日志内容高亮描述信息
18575
+ """符合检索条件的关键词,一般用于高亮显示。仅支持键值检索,不支持全文检索
18576
18576
 
18577
18577
  """
18578
18578
 
18579
18579
  def __init__(self):
18580
18580
  r"""
18581
- :param _Key: 高亮的日志Key
18581
+ :param _Key: 高亮的日志字段名称
18582
18582
  :type Key: str
18583
- :param _Values: 高亮的语法
18583
+ :param _Values: 高亮的关键词
18584
18584
  :type Values: list of str
18585
18585
  """
18586
18586
  self._Key = None
@@ -18588,7 +18588,7 @@ class HighLightItem(AbstractModel):
18588
18588
 
18589
18589
  @property
18590
18590
  def Key(self):
18591
- """高亮的日志Key
18591
+ """高亮的日志字段名称
18592
18592
  :rtype: str
18593
18593
  """
18594
18594
  return self._Key
@@ -18599,7 +18599,7 @@ class HighLightItem(AbstractModel):
18599
18599
 
18600
18600
  @property
18601
18601
  def Values(self):
18602
- """高亮的语法
18602
+ """高亮的关键词
18603
18603
  :rtype: list of str
18604
18604
  """
18605
18605
  return self._Values
@@ -19601,6 +19601,8 @@ class LogInfo(AbstractModel):
19601
19601
  :type PkgId: str
19602
19602
  :param _PkgLogId: 请求包内日志的ID
19603
19603
  :type PkgLogId: str
19604
+ :param _HighLights: 符合检索条件的关键词,一般用于高亮显示。仅支持键值检索,不支持全文检索
19605
+ :type HighLights: list of HighLightItem
19604
19606
  :param _LogJson: 日志内容的Json序列化字符串
19605
19607
  :type LogJson: str
19606
19608
  :param _HostName: 日志来源主机名称
@@ -19617,6 +19619,7 @@ class LogInfo(AbstractModel):
19617
19619
  self._FileName = None
19618
19620
  self._PkgId = None
19619
19621
  self._PkgLogId = None
19622
+ self._HighLights = None
19620
19623
  self._LogJson = None
19621
19624
  self._HostName = None
19622
19625
  self._RawLog = None
@@ -19699,6 +19702,17 @@ class LogInfo(AbstractModel):
19699
19702
  def PkgLogId(self, PkgLogId):
19700
19703
  self._PkgLogId = PkgLogId
19701
19704
 
19705
+ @property
19706
+ def HighLights(self):
19707
+ """符合检索条件的关键词,一般用于高亮显示。仅支持键值检索,不支持全文检索
19708
+ :rtype: list of HighLightItem
19709
+ """
19710
+ return self._HighLights
19711
+
19712
+ @HighLights.setter
19713
+ def HighLights(self, HighLights):
19714
+ self._HighLights = HighLights
19715
+
19702
19716
  @property
19703
19717
  def LogJson(self):
19704
19718
  """日志内容的Json序列化字符串
@@ -19752,6 +19766,12 @@ class LogInfo(AbstractModel):
19752
19766
  self._FileName = params.get("FileName")
19753
19767
  self._PkgId = params.get("PkgId")
19754
19768
  self._PkgLogId = params.get("PkgLogId")
19769
+ if params.get("HighLights") is not None:
19770
+ self._HighLights = []
19771
+ for item in params.get("HighLights"):
19772
+ obj = HighLightItem()
19773
+ obj._deserialize(item)
19774
+ self._HighLights.append(obj)
19755
19775
  self._LogJson = params.get("LogJson")
19756
19776
  self._HostName = params.get("HostName")
19757
19777
  self._RawLog = params.get("RawLog")
@@ -28162,6 +28182,8 @@ class SearchLogRequest(AbstractModel):
28162
28182
  为false时代表使用老的检索结果返回方式, 输出AnalysisResults和ColNames有效
28163
28183
  两种返回方式在编码格式上有少量区别,建议使用true
28164
28184
  :type UseNewAnalysis: bool
28185
+ :param _HighLight: 是否高亮符合检索条件的关键词,一般用于高亮显示。仅支持键值检索,不支持全文检索
28186
+ :type HighLight: bool
28165
28187
  """
28166
28188
  self._From = None
28167
28189
  self._To = None
@@ -28175,6 +28197,7 @@ class SearchLogRequest(AbstractModel):
28175
28197
  self._Context = None
28176
28198
  self._SamplingRate = None
28177
28199
  self._UseNewAnalysis = None
28200
+ self._HighLight = None
28178
28201
 
28179
28202
  @property
28180
28203
  def From(self):
@@ -28344,6 +28367,17 @@ class SearchLogRequest(AbstractModel):
28344
28367
  def UseNewAnalysis(self, UseNewAnalysis):
28345
28368
  self._UseNewAnalysis = UseNewAnalysis
28346
28369
 
28370
+ @property
28371
+ def HighLight(self):
28372
+ """是否高亮符合检索条件的关键词,一般用于高亮显示。仅支持键值检索,不支持全文检索
28373
+ :rtype: bool
28374
+ """
28375
+ return self._HighLight
28376
+
28377
+ @HighLight.setter
28378
+ def HighLight(self, HighLight):
28379
+ self._HighLight = HighLight
28380
+
28347
28381
 
28348
28382
  def _deserialize(self, params):
28349
28383
  self._From = params.get("From")
@@ -28363,6 +28397,7 @@ class SearchLogRequest(AbstractModel):
28363
28397
  self._Context = params.get("Context")
28364
28398
  self._SamplingRate = params.get("SamplingRate")
28365
28399
  self._UseNewAnalysis = params.get("UseNewAnalysis")
28400
+ self._HighLight = params.get("HighLight")
28366
28401
  memeber_set = set(params.keys())
28367
28402
  for name, value in vars(self).items():
28368
28403
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1355
3
+ Version: 3.0.1356
4
4
  Summary: Tencent Cloud Cls SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1356
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1355