tencentcloud-sdk-cls 3.0.547 → 3.0.548
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201016/models.rb +35 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eebec872ec0643e10df029e0c140fa677f86c819
|
4
|
+
data.tar.gz: 1a7d0166a841cb7d9ccc700603881a6a5e61a067
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9e6f23b328450970f535d61e82ef6e664753594bbdcc4f48026c0d19315cec92aa667c2107cf3e7ae71b741ea5d05a21132c07aae4fdcf44ece75da519b4a80
|
7
|
+
data.tar.gz: c350b1599a199d76c25aa8f3d133e2ce59d43439ea27bef300d4f826065cb654c29ccb1a8305f3b4c945d55a11ebf33d5a2046ce5997e1ee4eb4a4a841c16d60
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.548
|
data/lib/v20201016/models.rb
CHANGED
@@ -3607,6 +3607,23 @@ module TencentCloud
|
|
3607
3607
|
end
|
3608
3608
|
end
|
3609
3609
|
|
3610
|
+
# 动态更新索引配置
|
3611
|
+
class DynamicIndex < TencentCloud::Common::AbstractModel
|
3612
|
+
# @param Status: 动态索引配置开关
|
3613
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3614
|
+
# @type Status: Boolean
|
3615
|
+
|
3616
|
+
attr_accessor :Status
|
3617
|
+
|
3618
|
+
def initialize(status=nil)
|
3619
|
+
@Status = status
|
3620
|
+
end
|
3621
|
+
|
3622
|
+
def deserialize(params)
|
3623
|
+
@Status = params['Status']
|
3624
|
+
end
|
3625
|
+
end
|
3626
|
+
|
3610
3627
|
# 黑名单path信息
|
3611
3628
|
class ExcludePathInfo < TencentCloud::Common::AbstractModel
|
3612
3629
|
# @param Type: 类型,选填File或Path
|
@@ -5486,13 +5503,17 @@ module TencentCloud
|
|
5486
5503
|
# @param Tag: 元字段索引配置,如果为空时代表未开启元字段索引
|
5487
5504
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5488
5505
|
# @type Tag: :class:`Tencentcloud::Cls.v20201016.models.RuleTagInfo`
|
5506
|
+
# @param DynamicIndex: 动态索引配置,如果为空时代表未开启动态段索引
|
5507
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5508
|
+
# @type DynamicIndex: :class:`Tencentcloud::Cls.v20201016.models.DynamicIndex`
|
5489
5509
|
|
5490
|
-
attr_accessor :FullText, :KeyValue, :Tag
|
5510
|
+
attr_accessor :FullText, :KeyValue, :Tag, :DynamicIndex
|
5491
5511
|
|
5492
|
-
def initialize(fulltext=nil, keyvalue=nil, tag=nil)
|
5512
|
+
def initialize(fulltext=nil, keyvalue=nil, tag=nil, dynamicindex=nil)
|
5493
5513
|
@FullText = fulltext
|
5494
5514
|
@KeyValue = keyvalue
|
5495
5515
|
@Tag = tag
|
5516
|
+
@DynamicIndex = dynamicindex
|
5496
5517
|
end
|
5497
5518
|
|
5498
5519
|
def deserialize(params)
|
@@ -5508,6 +5529,10 @@ module TencentCloud
|
|
5508
5529
|
@Tag = RuleTagInfo.new
|
5509
5530
|
@Tag.deserialize(params['Tag'])
|
5510
5531
|
end
|
5532
|
+
unless params['DynamicIndex'].nil?
|
5533
|
+
@DynamicIndex = DynamicIndex.new
|
5534
|
+
@DynamicIndex.deserialize(params['DynamicIndex'])
|
5535
|
+
end
|
5511
5536
|
end
|
5512
5537
|
end
|
5513
5538
|
|
@@ -5605,7 +5630,7 @@ module TencentCloud
|
|
5605
5630
|
# @type SamplingRate: Float
|
5606
5631
|
# @param SyntaxRule: 检索语法规则,默认值为0。
|
5607
5632
|
# 0:Lucene语法,1:CQL语法。
|
5608
|
-
#
|
5633
|
+
# 详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
|
5609
5634
|
# @type SyntaxRule: Integer
|
5610
5635
|
|
5611
5636
|
attr_accessor :From, :To, :Query, :TopicId, :Limit, :Context, :Sort, :UseNewAnalysis, :SamplingRate, :SyntaxRule
|
@@ -5665,12 +5690,15 @@ module TencentCloud
|
|
5665
5690
|
# 当UseNewAnalysis为true时生效
|
5666
5691
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5667
5692
|
# @type Columns: Array
|
5693
|
+
# @param SamplingRate: 本次统计分析使用的采样率
|
5694
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5695
|
+
# @type SamplingRate: Float
|
5668
5696
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5669
5697
|
# @type RequestId: String
|
5670
5698
|
|
5671
|
-
attr_accessor :Context, :ListOver, :Analysis, :Results, :ColNames, :AnalysisResults, :AnalysisRecords, :Columns, :RequestId
|
5699
|
+
attr_accessor :Context, :ListOver, :Analysis, :Results, :ColNames, :AnalysisResults, :AnalysisRecords, :Columns, :SamplingRate, :RequestId
|
5672
5700
|
|
5673
|
-
def initialize(context=nil, listover=nil, analysis=nil, results=nil, colnames=nil, analysisresults=nil, analysisrecords=nil, columns=nil, requestid=nil)
|
5701
|
+
def initialize(context=nil, listover=nil, analysis=nil, results=nil, colnames=nil, analysisresults=nil, analysisrecords=nil, columns=nil, samplingrate=nil, requestid=nil)
|
5674
5702
|
@Context = context
|
5675
5703
|
@ListOver = listover
|
5676
5704
|
@Analysis = analysis
|
@@ -5679,6 +5707,7 @@ module TencentCloud
|
|
5679
5707
|
@AnalysisResults = analysisresults
|
5680
5708
|
@AnalysisRecords = analysisrecords
|
5681
5709
|
@Columns = columns
|
5710
|
+
@SamplingRate = samplingrate
|
5682
5711
|
@RequestId = requestid
|
5683
5712
|
end
|
5684
5713
|
|
@@ -5712,6 +5741,7 @@ module TencentCloud
|
|
5712
5741
|
@Columns << column_tmp
|
5713
5742
|
end
|
5714
5743
|
end
|
5744
|
+
@SamplingRate = params['SamplingRate']
|
5715
5745
|
@RequestId = params['RequestId']
|
5716
5746
|
end
|
5717
5747
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cls
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.548
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|