tencentcloud-sdk-python-cls 3.0.869__tar.gz → 3.0.871__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.869 → tencentcloud-sdk-python-cls-3.0.871}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud/cls/v20201016/models.py +38 -1
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/setup.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.869 → tencentcloud-sdk-python-cls-3.0.871}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -4066,6 +4066,31 @@ class DescribeTopicsResponse(AbstractModel):
|
|
|
4066
4066
|
self.RequestId = params.get("RequestId")
|
|
4067
4067
|
|
|
4068
4068
|
|
|
4069
|
+
class DynamicIndex(AbstractModel):
|
|
4070
|
+
"""动态更新索引配置
|
|
4071
|
+
|
|
4072
|
+
"""
|
|
4073
|
+
|
|
4074
|
+
def __init__(self):
|
|
4075
|
+
r"""
|
|
4076
|
+
:param Status: 动态索引配置开关
|
|
4077
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4078
|
+
:type Status: bool
|
|
4079
|
+
"""
|
|
4080
|
+
self.Status = None
|
|
4081
|
+
|
|
4082
|
+
|
|
4083
|
+
def _deserialize(self, params):
|
|
4084
|
+
self.Status = params.get("Status")
|
|
4085
|
+
memeber_set = set(params.keys())
|
|
4086
|
+
for name, value in vars(self).items():
|
|
4087
|
+
if name in memeber_set:
|
|
4088
|
+
memeber_set.remove(name)
|
|
4089
|
+
if len(memeber_set) > 0:
|
|
4090
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4091
|
+
|
|
4092
|
+
|
|
4093
|
+
|
|
4069
4094
|
class ExcludePathInfo(AbstractModel):
|
|
4070
4095
|
"""黑名单path信息
|
|
4071
4096
|
|
|
@@ -6224,10 +6249,14 @@ class RuleInfo(AbstractModel):
|
|
|
6224
6249
|
:param Tag: 元字段索引配置,如果为空时代表未开启元字段索引
|
|
6225
6250
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6226
6251
|
:type Tag: :class:`tencentcloud.cls.v20201016.models.RuleTagInfo`
|
|
6252
|
+
:param DynamicIndex: 动态索引配置,如果为空时代表未开启动态段索引
|
|
6253
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6254
|
+
:type DynamicIndex: :class:`tencentcloud.cls.v20201016.models.DynamicIndex`
|
|
6227
6255
|
"""
|
|
6228
6256
|
self.FullText = None
|
|
6229
6257
|
self.KeyValue = None
|
|
6230
6258
|
self.Tag = None
|
|
6259
|
+
self.DynamicIndex = None
|
|
6231
6260
|
|
|
6232
6261
|
|
|
6233
6262
|
def _deserialize(self, params):
|
|
@@ -6240,6 +6269,9 @@ class RuleInfo(AbstractModel):
|
|
|
6240
6269
|
if params.get("Tag") is not None:
|
|
6241
6270
|
self.Tag = RuleTagInfo()
|
|
6242
6271
|
self.Tag._deserialize(params.get("Tag"))
|
|
6272
|
+
if params.get("DynamicIndex") is not None:
|
|
6273
|
+
self.DynamicIndex = DynamicIndex()
|
|
6274
|
+
self.DynamicIndex._deserialize(params.get("DynamicIndex"))
|
|
6243
6275
|
memeber_set = set(params.keys())
|
|
6244
6276
|
for name, value in vars(self).items():
|
|
6245
6277
|
if name in memeber_set:
|
|
@@ -6360,7 +6392,7 @@ class SearchLogRequest(AbstractModel):
|
|
|
6360
6392
|
:type SamplingRate: float
|
|
6361
6393
|
:param SyntaxRule: 检索语法规则,默认值为0。
|
|
6362
6394
|
0:Lucene语法,1:CQL语法。
|
|
6363
|
-
|
|
6395
|
+
详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
|
6364
6396
|
:type SyntaxRule: int
|
|
6365
6397
|
"""
|
|
6366
6398
|
self.From = None
|
|
@@ -6428,6 +6460,9 @@ class SearchLogResponse(AbstractModel):
|
|
|
6428
6460
|
当UseNewAnalysis为true时生效
|
|
6429
6461
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6430
6462
|
:type Columns: list of Column
|
|
6463
|
+
:param SamplingRate: 本次统计分析使用的采样率
|
|
6464
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6465
|
+
:type SamplingRate: float
|
|
6431
6466
|
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6432
6467
|
:type RequestId: str
|
|
6433
6468
|
"""
|
|
@@ -6439,6 +6474,7 @@ class SearchLogResponse(AbstractModel):
|
|
|
6439
6474
|
self.AnalysisResults = None
|
|
6440
6475
|
self.AnalysisRecords = None
|
|
6441
6476
|
self.Columns = None
|
|
6477
|
+
self.SamplingRate = None
|
|
6442
6478
|
self.RequestId = None
|
|
6443
6479
|
|
|
6444
6480
|
|
|
@@ -6466,6 +6502,7 @@ class SearchLogResponse(AbstractModel):
|
|
|
6466
6502
|
obj = Column()
|
|
6467
6503
|
obj._deserialize(item)
|
|
6468
6504
|
self.Columns.append(obj)
|
|
6505
|
+
self.SamplingRate = params.get("SamplingRate")
|
|
6469
6506
|
self.RequestId = params.get("RequestId")
|
|
6470
6507
|
|
|
6471
6508
|
|
|
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
|