tencentcloud-sdk-python-cls 3.0.1155__tar.gz → 3.0.1167__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.1155 → tencentcloud-sdk-python-cls-3.0.1167}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud/cls/v20201016/models.py +85 -4
  5. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cls-3.0.1167/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cls-3.0.1155/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud/cls/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud/cls/v20201016/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  13. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cls-3.0.1155 → tencentcloud-sdk-python-cls-3.0.1167}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1155
3
+ Version: 3.0.1167
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.1155"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1167"],
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.1155'
17
+ __version__ = '3.0.1167'
@@ -5147,6 +5147,8 @@ class CreateExportRequest(AbstractModel):
5147
5147
  :param _SyntaxRule: 语法规则, 默认值为0。
5148
5148
  0:Lucene语法,1:CQL语法。
5149
5149
  :type SyntaxRule: int
5150
+ :param _DerivedFields: 导出字段
5151
+ :type DerivedFields: list of str
5150
5152
  """
5151
5153
  self._TopicId = None
5152
5154
  self._Count = None
@@ -5156,6 +5158,7 @@ class CreateExportRequest(AbstractModel):
5156
5158
  self._Order = None
5157
5159
  self._Format = None
5158
5160
  self._SyntaxRule = None
5161
+ self._DerivedFields = None
5159
5162
 
5160
5163
  @property
5161
5164
  def TopicId(self):
@@ -5221,6 +5224,14 @@ class CreateExportRequest(AbstractModel):
5221
5224
  def SyntaxRule(self, SyntaxRule):
5222
5225
  self._SyntaxRule = SyntaxRule
5223
5226
 
5227
+ @property
5228
+ def DerivedFields(self):
5229
+ return self._DerivedFields
5230
+
5231
+ @DerivedFields.setter
5232
+ def DerivedFields(self, DerivedFields):
5233
+ self._DerivedFields = DerivedFields
5234
+
5224
5235
 
5225
5236
  def _deserialize(self, params):
5226
5237
  self._TopicId = params.get("TopicId")
@@ -5231,6 +5242,7 @@ class CreateExportRequest(AbstractModel):
5231
5242
  self._Order = params.get("Order")
5232
5243
  self._Format = params.get("Format")
5233
5244
  self._SyntaxRule = params.get("SyntaxRule")
5245
+ self._DerivedFields = params.get("DerivedFields")
5234
5246
  memeber_set = set(params.keys())
5235
5247
  for name, value in vars(self).items():
5236
5248
  property_name = name[1:]
@@ -10308,17 +10320,31 @@ class DescribeLogContextRequest(AbstractModel):
10308
10320
  r"""
10309
10321
  :param _TopicId: 要查询的日志主题ID
10310
10322
  :type TopicId: str
10311
- :param _BTime: 日志时间, 需按照 UTC+8 时区将日志中的Unix时间戳转换为 YYYY-mm-dd HH:MM:SS.FFF 格式的字符串。
10323
+ :param _BTime: 日志时间, 即SearchLog接口返回信息中Results结构体中的Time,需按照 UTC+8 时区将该毫秒级Unix时间戳转换为 YYYY-mm-dd HH:MM:SS.FFF 格式的字符串。
10312
10324
  :type BTime: str
10313
- :param _PkgId: 日志包序号。SearchLog接口返回信息中Results结构体中的PkgId。
10325
+ :param _PkgId: 日志包序号,即SearchLog接口返回信息中Results结构体中的PkgId。
10314
10326
  :type PkgId: str
10315
- :param _PkgLogId: 日志包内一条日志的序号。
10316
- SearchLog接口返回信息中Results结构中的PkgLogId。
10327
+ :param _PkgLogId: 日志包内一条日志的序号,即SearchLog接口返回信息中Results结构中的PkgLogId。
10317
10328
  :type PkgLogId: int
10318
10329
  :param _PrevLogs: 前${PrevLogs}条日志,默认值10。
10319
10330
  :type PrevLogs: int
10320
10331
  :param _NextLogs: 后${NextLogs}条日志,默认值10。
10321
10332
  :type NextLogs: int
10333
+ :param _Query: 检索语句,对日志上下文进行过滤,最大长度为12KB
10334
+ 语句由 <a href="https://cloud.tencent.com/document/product/614/47044" target="_blank">[检索条件]</a>构成,不支持SQL语句
10335
+ :type Query: str
10336
+ :param _From: 上下文检索的开始时间,单位:毫秒级时间戳
10337
+ 注意:
10338
+ - From为空时,表示上下文检索的开始时间不做限制
10339
+ - From和To非空时,From < To
10340
+ - 暂时仅支持上海 / 弗吉尼亚/ 新加坡地域
10341
+ :type From: int
10342
+ :param _To: 上下文检索的结束时间,单位:毫秒级时间戳。
10343
+ 注意:
10344
+ - To为空时,表示上下文检索的结束时间不做限制
10345
+ - From和To非空时,From < To
10346
+ - 暂时仅支持上海 / 弗吉尼亚/ 新加坡地域
10347
+ :type To: int
10322
10348
  """
10323
10349
  self._TopicId = None
10324
10350
  self._BTime = None
@@ -10326,6 +10352,9 @@ SearchLog接口返回信息中Results结构中的PkgLogId。
10326
10352
  self._PkgLogId = None
10327
10353
  self._PrevLogs = None
10328
10354
  self._NextLogs = None
10355
+ self._Query = None
10356
+ self._From = None
10357
+ self._To = None
10329
10358
 
10330
10359
  @property
10331
10360
  def TopicId(self):
@@ -10375,6 +10404,30 @@ SearchLog接口返回信息中Results结构中的PkgLogId。
10375
10404
  def NextLogs(self, NextLogs):
10376
10405
  self._NextLogs = NextLogs
10377
10406
 
10407
+ @property
10408
+ def Query(self):
10409
+ return self._Query
10410
+
10411
+ @Query.setter
10412
+ def Query(self, Query):
10413
+ self._Query = Query
10414
+
10415
+ @property
10416
+ def From(self):
10417
+ return self._From
10418
+
10419
+ @From.setter
10420
+ def From(self, From):
10421
+ self._From = From
10422
+
10423
+ @property
10424
+ def To(self):
10425
+ return self._To
10426
+
10427
+ @To.setter
10428
+ def To(self, To):
10429
+ self._To = To
10430
+
10378
10431
 
10379
10432
  def _deserialize(self, params):
10380
10433
  self._TopicId = params.get("TopicId")
@@ -10383,6 +10436,9 @@ SearchLog接口返回信息中Results结构中的PkgLogId。
10383
10436
  self._PkgLogId = params.get("PkgLogId")
10384
10437
  self._PrevLogs = params.get("PrevLogs")
10385
10438
  self._NextLogs = params.get("NextLogs")
10439
+ self._Query = params.get("Query")
10440
+ self._From = params.get("From")
10441
+ self._To = params.get("To")
10386
10442
  memeber_set = set(params.keys())
10387
10443
  for name, value in vars(self).items():
10388
10444
  property_name = name[1:]
@@ -11887,6 +11943,9 @@ class ExportInfo(AbstractModel):
11887
11943
  :param _SyntaxRule: 语法规则。 默认值为0。
11888
11944
  0:Lucene语法,1:CQL语法。
11889
11945
  :type SyntaxRule: int
11946
+ :param _DerivedFields: 导出字段
11947
+ 注意:此字段可能返回 null,表示取不到有效值。
11948
+ :type DerivedFields: list of str
11890
11949
  """
11891
11950
  self._TopicId = None
11892
11951
  self._ExportId = None
@@ -11902,6 +11961,7 @@ class ExportInfo(AbstractModel):
11902
11961
  self._CosPath = None
11903
11962
  self._CreateTime = None
11904
11963
  self._SyntaxRule = None
11964
+ self._DerivedFields = None
11905
11965
 
11906
11966
  @property
11907
11967
  def TopicId(self):
@@ -12015,6 +12075,14 @@ class ExportInfo(AbstractModel):
12015
12075
  def SyntaxRule(self, SyntaxRule):
12016
12076
  self._SyntaxRule = SyntaxRule
12017
12077
 
12078
+ @property
12079
+ def DerivedFields(self):
12080
+ return self._DerivedFields
12081
+
12082
+ @DerivedFields.setter
12083
+ def DerivedFields(self, DerivedFields):
12084
+ self._DerivedFields = DerivedFields
12085
+
12018
12086
 
12019
12087
  def _deserialize(self, params):
12020
12088
  self._TopicId = params.get("TopicId")
@@ -12031,6 +12099,7 @@ class ExportInfo(AbstractModel):
12031
12099
  self._CosPath = params.get("CosPath")
12032
12100
  self._CreateTime = params.get("CreateTime")
12033
12101
  self._SyntaxRule = params.get("SyntaxRule")
12102
+ self._DerivedFields = params.get("DerivedFields")
12034
12103
  memeber_set = set(params.keys())
12035
12104
  for name, value in vars(self).items():
12036
12105
  property_name = name[1:]
@@ -17459,6 +17528,8 @@ class ModifyTopicRequest(AbstractModel):
17459
17528
  :param _IsWebTracking: 免鉴权开关。 false:关闭; true:开启。
17460
17529
  开启后将支持指定操作匿名访问该日志主题。详情请参见[日志主题](https://cloud.tencent.com/document/product/614/41035)。
17461
17530
  :type IsWebTracking: bool
17531
+ :param _PartitionCount: 日志主题分区数量
17532
+ :type PartitionCount: int
17462
17533
  """
17463
17534
  self._TopicId = None
17464
17535
  self._TopicName = None
@@ -17470,6 +17541,7 @@ class ModifyTopicRequest(AbstractModel):
17470
17541
  self._Describes = None
17471
17542
  self._HotPeriod = None
17472
17543
  self._IsWebTracking = None
17544
+ self._PartitionCount = None
17473
17545
 
17474
17546
  @property
17475
17547
  def TopicId(self):
@@ -17551,6 +17623,14 @@ class ModifyTopicRequest(AbstractModel):
17551
17623
  def IsWebTracking(self, IsWebTracking):
17552
17624
  self._IsWebTracking = IsWebTracking
17553
17625
 
17626
+ @property
17627
+ def PartitionCount(self):
17628
+ return self._PartitionCount
17629
+
17630
+ @PartitionCount.setter
17631
+ def PartitionCount(self, PartitionCount):
17632
+ self._PartitionCount = PartitionCount
17633
+
17554
17634
 
17555
17635
  def _deserialize(self, params):
17556
17636
  self._TopicId = params.get("TopicId")
@@ -17568,6 +17648,7 @@ class ModifyTopicRequest(AbstractModel):
17568
17648
  self._Describes = params.get("Describes")
17569
17649
  self._HotPeriod = params.get("HotPeriod")
17570
17650
  self._IsWebTracking = params.get("IsWebTracking")
17651
+ self._PartitionCount = params.get("PartitionCount")
17571
17652
  memeber_set = set(params.keys())
17572
17653
  for name, value in vars(self).items():
17573
17654
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1155
3
+ Version: 3.0.1167
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.1167
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1155