tencentcloud-sdk-python-cls 3.0.868__tar.gz → 3.0.870__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.868 → tencentcloud-sdk-python-cls-3.0.870}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud/cls/v20201016/models.py +56 -1
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/setup.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.868 → tencentcloud-sdk-python-cls-3.0.870}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
|
@@ -2027,6 +2027,11 @@ class CreateTopicRequest(AbstractModel):
|
|
|
2027
2027
|
:type StorageType: str
|
|
2028
2028
|
:param Period: 生命周期,单位天,标准存储取值范围1\~3600,低频存储取值范围7\~3600天。取值为3640时代表永久保存
|
|
2029
2029
|
:type Period: int
|
|
2030
|
+
:param Describes: 日志主题描述
|
|
2031
|
+
:type Describes: str
|
|
2032
|
+
:param HotPeriod: 0:关闭日志沉降。
|
|
2033
|
+
非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
|
|
2034
|
+
:type HotPeriod: int
|
|
2030
2035
|
"""
|
|
2031
2036
|
self.LogsetId = None
|
|
2032
2037
|
self.TopicName = None
|
|
@@ -2036,6 +2041,8 @@ class CreateTopicRequest(AbstractModel):
|
|
|
2036
2041
|
self.MaxSplitPartitions = None
|
|
2037
2042
|
self.StorageType = None
|
|
2038
2043
|
self.Period = None
|
|
2044
|
+
self.Describes = None
|
|
2045
|
+
self.HotPeriod = None
|
|
2039
2046
|
|
|
2040
2047
|
|
|
2041
2048
|
def _deserialize(self, params):
|
|
@@ -2052,6 +2059,8 @@ class CreateTopicRequest(AbstractModel):
|
|
|
2052
2059
|
self.MaxSplitPartitions = params.get("MaxSplitPartitions")
|
|
2053
2060
|
self.StorageType = params.get("StorageType")
|
|
2054
2061
|
self.Period = params.get("Period")
|
|
2062
|
+
self.Describes = params.get("Describes")
|
|
2063
|
+
self.HotPeriod = params.get("HotPeriod")
|
|
2055
2064
|
memeber_set = set(params.keys())
|
|
2056
2065
|
for name, value in vars(self).items():
|
|
2057
2066
|
if name in memeber_set:
|
|
@@ -4057,6 +4066,31 @@ class DescribeTopicsResponse(AbstractModel):
|
|
|
4057
4066
|
self.RequestId = params.get("RequestId")
|
|
4058
4067
|
|
|
4059
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
|
+
|
|
4060
4094
|
class ExcludePathInfo(AbstractModel):
|
|
4061
4095
|
"""黑名单path信息
|
|
4062
4096
|
|
|
@@ -5859,6 +5893,11 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
5859
5893
|
:type MaxSplitPartitions: int
|
|
5860
5894
|
:param Period: 生命周期,单位天,标准存储取值范围1\~3600,低频存储取值范围7\~3600。取值为3640时代表永久保存
|
|
5861
5895
|
:type Period: int
|
|
5896
|
+
:param Describes: 日志主题描述
|
|
5897
|
+
:type Describes: str
|
|
5898
|
+
:param HotPeriod: 0:关闭日志沉降。
|
|
5899
|
+
非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
|
|
5900
|
+
:type HotPeriod: int
|
|
5862
5901
|
"""
|
|
5863
5902
|
self.TopicId = None
|
|
5864
5903
|
self.TopicName = None
|
|
@@ -5867,6 +5906,8 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
5867
5906
|
self.AutoSplit = None
|
|
5868
5907
|
self.MaxSplitPartitions = None
|
|
5869
5908
|
self.Period = None
|
|
5909
|
+
self.Describes = None
|
|
5910
|
+
self.HotPeriod = None
|
|
5870
5911
|
|
|
5871
5912
|
|
|
5872
5913
|
def _deserialize(self, params):
|
|
@@ -5882,6 +5923,8 @@ class ModifyTopicRequest(AbstractModel):
|
|
|
5882
5923
|
self.AutoSplit = params.get("AutoSplit")
|
|
5883
5924
|
self.MaxSplitPartitions = params.get("MaxSplitPartitions")
|
|
5884
5925
|
self.Period = params.get("Period")
|
|
5926
|
+
self.Describes = params.get("Describes")
|
|
5927
|
+
self.HotPeriod = params.get("HotPeriod")
|
|
5885
5928
|
memeber_set = set(params.keys())
|
|
5886
5929
|
for name, value in vars(self).items():
|
|
5887
5930
|
if name in memeber_set:
|
|
@@ -6206,10 +6249,14 @@ class RuleInfo(AbstractModel):
|
|
|
6206
6249
|
:param Tag: 元字段索引配置,如果为空时代表未开启元字段索引
|
|
6207
6250
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6208
6251
|
:type Tag: :class:`tencentcloud.cls.v20201016.models.RuleTagInfo`
|
|
6252
|
+
:param DynamicIndex: 动态索引配置,如果为空时代表未开启动态段索引
|
|
6253
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6254
|
+
:type DynamicIndex: :class:`tencentcloud.cls.v20201016.models.DynamicIndex`
|
|
6209
6255
|
"""
|
|
6210
6256
|
self.FullText = None
|
|
6211
6257
|
self.KeyValue = None
|
|
6212
6258
|
self.Tag = None
|
|
6259
|
+
self.DynamicIndex = None
|
|
6213
6260
|
|
|
6214
6261
|
|
|
6215
6262
|
def _deserialize(self, params):
|
|
@@ -6222,6 +6269,9 @@ class RuleInfo(AbstractModel):
|
|
|
6222
6269
|
if params.get("Tag") is not None:
|
|
6223
6270
|
self.Tag = RuleTagInfo()
|
|
6224
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"))
|
|
6225
6275
|
memeber_set = set(params.keys())
|
|
6226
6276
|
for name, value in vars(self).items():
|
|
6227
6277
|
if name in memeber_set:
|
|
@@ -6342,7 +6392,7 @@ class SearchLogRequest(AbstractModel):
|
|
|
6342
6392
|
:type SamplingRate: float
|
|
6343
6393
|
:param SyntaxRule: 检索语法规则,默认值为0。
|
|
6344
6394
|
0:Lucene语法,1:CQL语法。
|
|
6345
|
-
|
|
6395
|
+
详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
|
6346
6396
|
:type SyntaxRule: int
|
|
6347
6397
|
"""
|
|
6348
6398
|
self.From = None
|
|
@@ -6410,6 +6460,9 @@ class SearchLogResponse(AbstractModel):
|
|
|
6410
6460
|
当UseNewAnalysis为true时生效
|
|
6411
6461
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6412
6462
|
:type Columns: list of Column
|
|
6463
|
+
:param SamplingRate: 本次统计分析使用的采样率
|
|
6464
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6465
|
+
:type SamplingRate: float
|
|
6413
6466
|
:param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6414
6467
|
:type RequestId: str
|
|
6415
6468
|
"""
|
|
@@ -6421,6 +6474,7 @@ class SearchLogResponse(AbstractModel):
|
|
|
6421
6474
|
self.AnalysisResults = None
|
|
6422
6475
|
self.AnalysisRecords = None
|
|
6423
6476
|
self.Columns = None
|
|
6477
|
+
self.SamplingRate = None
|
|
6424
6478
|
self.RequestId = None
|
|
6425
6479
|
|
|
6426
6480
|
|
|
@@ -6448,6 +6502,7 @@ class SearchLogResponse(AbstractModel):
|
|
|
6448
6502
|
obj = Column()
|
|
6449
6503
|
obj._deserialize(item)
|
|
6450
6504
|
self.Columns.append(obj)
|
|
6505
|
+
self.SamplingRate = params.get("SamplingRate")
|
|
6451
6506
|
self.RequestId = params.get("RequestId")
|
|
6452
6507
|
|
|
6453
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
|