tencentcloud-sdk-python-cls 3.0.1156__tar.gz → 3.0.1158__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.1156 → tencentcloud-sdk-python-cls-3.0.1158}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud/cls/v20201016/models.py +48 -4
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1158/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1156/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1156 → tencentcloud-sdk-python-cls-3.0.1158}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1158"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -10308,17 +10308,31 @@ class DescribeLogContextRequest(AbstractModel):
|
|
|
10308
10308
|
r"""
|
|
10309
10309
|
:param _TopicId: 要查询的日志主题ID
|
|
10310
10310
|
:type TopicId: str
|
|
10311
|
-
:param _BTime: 日志时间,
|
|
10311
|
+
:param _BTime: 日志时间, 即SearchLog接口返回信息中Results结构体中的Time,需按照 UTC+8 时区将该毫秒级Unix时间戳转换为 YYYY-mm-dd HH:MM:SS.FFF 格式的字符串。
|
|
10312
10312
|
:type BTime: str
|
|
10313
|
-
:param _PkgId:
|
|
10313
|
+
:param _PkgId: 日志包序号,即SearchLog接口返回信息中Results结构体中的PkgId。
|
|
10314
10314
|
:type PkgId: str
|
|
10315
|
-
:param _PkgLogId:
|
|
10316
|
-
SearchLog接口返回信息中Results结构中的PkgLogId。
|
|
10315
|
+
:param _PkgLogId: 日志包内一条日志的序号,即SearchLog接口返回信息中Results结构中的PkgLogId。
|
|
10317
10316
|
:type PkgLogId: int
|
|
10318
10317
|
:param _PrevLogs: 前${PrevLogs}条日志,默认值10。
|
|
10319
10318
|
:type PrevLogs: int
|
|
10320
10319
|
:param _NextLogs: 后${NextLogs}条日志,默认值10。
|
|
10321
10320
|
:type NextLogs: int
|
|
10321
|
+
:param _Query: 检索语句,对日志上下文进行过滤,最大长度为12KB
|
|
10322
|
+
语句由 <a href="https://cloud.tencent.com/document/product/614/47044" target="_blank">[检索条件]</a>构成,不支持SQL语句
|
|
10323
|
+
:type Query: str
|
|
10324
|
+
:param _From: 上下文检索的开始时间,单位:毫秒级时间戳
|
|
10325
|
+
注意:
|
|
10326
|
+
- From为空时,表示上下文检索的开始时间不做限制
|
|
10327
|
+
- From和To非空时,From < To
|
|
10328
|
+
- 暂时仅支持上海 / 弗吉尼亚/ 新加坡地域
|
|
10329
|
+
:type From: int
|
|
10330
|
+
:param _To: 上下文检索的结束时间,单位:毫秒级时间戳。
|
|
10331
|
+
注意:
|
|
10332
|
+
- To为空时,表示上下文检索的结束时间不做限制
|
|
10333
|
+
- From和To非空时,From < To
|
|
10334
|
+
- 暂时仅支持上海 / 弗吉尼亚/ 新加坡地域
|
|
10335
|
+
:type To: int
|
|
10322
10336
|
"""
|
|
10323
10337
|
self._TopicId = None
|
|
10324
10338
|
self._BTime = None
|
|
@@ -10326,6 +10340,9 @@ SearchLog接口返回信息中Results结构中的PkgLogId。
|
|
|
10326
10340
|
self._PkgLogId = None
|
|
10327
10341
|
self._PrevLogs = None
|
|
10328
10342
|
self._NextLogs = None
|
|
10343
|
+
self._Query = None
|
|
10344
|
+
self._From = None
|
|
10345
|
+
self._To = None
|
|
10329
10346
|
|
|
10330
10347
|
@property
|
|
10331
10348
|
def TopicId(self):
|
|
@@ -10375,6 +10392,30 @@ SearchLog接口返回信息中Results结构中的PkgLogId。
|
|
|
10375
10392
|
def NextLogs(self, NextLogs):
|
|
10376
10393
|
self._NextLogs = NextLogs
|
|
10377
10394
|
|
|
10395
|
+
@property
|
|
10396
|
+
def Query(self):
|
|
10397
|
+
return self._Query
|
|
10398
|
+
|
|
10399
|
+
@Query.setter
|
|
10400
|
+
def Query(self, Query):
|
|
10401
|
+
self._Query = Query
|
|
10402
|
+
|
|
10403
|
+
@property
|
|
10404
|
+
def From(self):
|
|
10405
|
+
return self._From
|
|
10406
|
+
|
|
10407
|
+
@From.setter
|
|
10408
|
+
def From(self, From):
|
|
10409
|
+
self._From = From
|
|
10410
|
+
|
|
10411
|
+
@property
|
|
10412
|
+
def To(self):
|
|
10413
|
+
return self._To
|
|
10414
|
+
|
|
10415
|
+
@To.setter
|
|
10416
|
+
def To(self, To):
|
|
10417
|
+
self._To = To
|
|
10418
|
+
|
|
10378
10419
|
|
|
10379
10420
|
def _deserialize(self, params):
|
|
10380
10421
|
self._TopicId = params.get("TopicId")
|
|
@@ -10383,6 +10424,9 @@ SearchLog接口返回信息中Results结构中的PkgLogId。
|
|
|
10383
10424
|
self._PkgLogId = params.get("PkgLogId")
|
|
10384
10425
|
self._PrevLogs = params.get("PrevLogs")
|
|
10385
10426
|
self._NextLogs = params.get("NextLogs")
|
|
10427
|
+
self._Query = params.get("Query")
|
|
10428
|
+
self._From = params.get("From")
|
|
10429
|
+
self._To = params.get("To")
|
|
10386
10430
|
memeber_set = set(params.keys())
|
|
10387
10431
|
for name, value in vars(self).items():
|
|
10388
10432
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1158
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1156
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|