tencentcloud-sdk-cls 3.0.546 → 3.0.548

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201016/models.rb +57 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db8253ab8fd125add8aeefb543e22d55c329d47c
4
- data.tar.gz: fd2b4d61c5a82f925f58a3f706a45ad01a9a5393
3
+ metadata.gz: eebec872ec0643e10df029e0c140fa677f86c819
4
+ data.tar.gz: 1a7d0166a841cb7d9ccc700603881a6a5e61a067
5
5
  SHA512:
6
- metadata.gz: 0ee06d382c0b9b58d146d7bdb18e50ee2b06b47c9363d4e2a344f632b9a9d779280c05454323b645be2996e0431b32ee144c790f18c0bcc4f86a0e62819a7b9d
7
- data.tar.gz: b436a6051079cbf779b41a66043733a564b47efaf212ff861259d2b610edf3fab00beb86bb042a04ee72f38ceb18917fcc0c23d64f58c9e3d723c358d57cb5dc
6
+ metadata.gz: a9e6f23b328450970f535d61e82ef6e664753594bbdcc4f48026c0d19315cec92aa667c2107cf3e7ae71b741ea5d05a21132c07aae4fdcf44ece75da519b4a80
7
+ data.tar.gz: c350b1599a199d76c25aa8f3d133e2ce59d43439ea27bef300d4f826065cb654c29ccb1a8305f3b4c945d55a11ebf33d5a2046ce5997e1ee4eb4a4a841c16d60
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.546
1
+ 3.0.548
@@ -1812,10 +1812,15 @@ module TencentCloud
1812
1812
  # @type StorageType: String
1813
1813
  # @param Period: 生命周期,单位天,标准存储取值范围1\~3600,低频存储取值范围7\~3600天。取值为3640时代表永久保存
1814
1814
  # @type Period: Integer
1815
+ # @param Describes: 日志主题描述
1816
+ # @type Describes: String
1817
+ # @param HotPeriod: 0:关闭日志沉降。
1818
+ # 非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
1819
+ # @type HotPeriod: Integer
1815
1820
 
1816
- attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period
1821
+ attr_accessor :LogsetId, :TopicName, :PartitionCount, :Tags, :AutoSplit, :MaxSplitPartitions, :StorageType, :Period, :Describes, :HotPeriod
1817
1822
 
1818
- def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil)
1823
+ def initialize(logsetid=nil, topicname=nil, partitioncount=nil, tags=nil, autosplit=nil, maxsplitpartitions=nil, storagetype=nil, period=nil, describes=nil, hotperiod=nil)
1819
1824
  @LogsetId = logsetid
1820
1825
  @TopicName = topicname
1821
1826
  @PartitionCount = partitioncount
@@ -1824,6 +1829,8 @@ module TencentCloud
1824
1829
  @MaxSplitPartitions = maxsplitpartitions
1825
1830
  @StorageType = storagetype
1826
1831
  @Period = period
1832
+ @Describes = describes
1833
+ @HotPeriod = hotperiod
1827
1834
  end
1828
1835
 
1829
1836
  def deserialize(params)
@@ -1842,6 +1849,8 @@ module TencentCloud
1842
1849
  @MaxSplitPartitions = params['MaxSplitPartitions']
1843
1850
  @StorageType = params['StorageType']
1844
1851
  @Period = params['Period']
1852
+ @Describes = params['Describes']
1853
+ @HotPeriod = params['HotPeriod']
1845
1854
  end
1846
1855
  end
1847
1856
 
@@ -3598,6 +3607,23 @@ module TencentCloud
3598
3607
  end
3599
3608
  end
3600
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
+
3601
3627
  # 黑名单path信息
3602
3628
  class ExcludePathInfo < TencentCloud::Common::AbstractModel
3603
3629
  # @param Type: 类型,选填File或Path
@@ -5184,10 +5210,15 @@ module TencentCloud
5184
5210
  # @type MaxSplitPartitions: Integer
5185
5211
  # @param Period: 生命周期,单位天,标准存储取值范围1\~3600,低频存储取值范围7\~3600。取值为3640时代表永久保存
5186
5212
  # @type Period: Integer
5213
+ # @param Describes: 日志主题描述
5214
+ # @type Describes: String
5215
+ # @param HotPeriod: 0:关闭日志沉降。
5216
+ # 非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
5217
+ # @type HotPeriod: Integer
5187
5218
 
5188
- attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period
5219
+ attr_accessor :TopicId, :TopicName, :Tags, :Status, :AutoSplit, :MaxSplitPartitions, :Period, :Describes, :HotPeriod
5189
5220
 
5190
- def initialize(topicid=nil, topicname=nil, tags=nil, status=nil, autosplit=nil, maxsplitpartitions=nil, period=nil)
5221
+ def initialize(topicid=nil, topicname=nil, tags=nil, status=nil, autosplit=nil, maxsplitpartitions=nil, period=nil, describes=nil, hotperiod=nil)
5191
5222
  @TopicId = topicid
5192
5223
  @TopicName = topicname
5193
5224
  @Tags = tags
@@ -5195,6 +5226,8 @@ module TencentCloud
5195
5226
  @AutoSplit = autosplit
5196
5227
  @MaxSplitPartitions = maxsplitpartitions
5197
5228
  @Period = period
5229
+ @Describes = describes
5230
+ @HotPeriod = hotperiod
5198
5231
  end
5199
5232
 
5200
5233
  def deserialize(params)
@@ -5212,6 +5245,8 @@ module TencentCloud
5212
5245
  @AutoSplit = params['AutoSplit']
5213
5246
  @MaxSplitPartitions = params['MaxSplitPartitions']
5214
5247
  @Period = params['Period']
5248
+ @Describes = params['Describes']
5249
+ @HotPeriod = params['HotPeriod']
5215
5250
  end
5216
5251
  end
5217
5252
 
@@ -5468,13 +5503,17 @@ module TencentCloud
5468
5503
  # @param Tag: 元字段索引配置,如果为空时代表未开启元字段索引
5469
5504
  # 注意:此字段可能返回 null,表示取不到有效值。
5470
5505
  # @type Tag: :class:`Tencentcloud::Cls.v20201016.models.RuleTagInfo`
5506
+ # @param DynamicIndex: 动态索引配置,如果为空时代表未开启动态段索引
5507
+ # 注意:此字段可能返回 null,表示取不到有效值。
5508
+ # @type DynamicIndex: :class:`Tencentcloud::Cls.v20201016.models.DynamicIndex`
5471
5509
 
5472
- attr_accessor :FullText, :KeyValue, :Tag
5510
+ attr_accessor :FullText, :KeyValue, :Tag, :DynamicIndex
5473
5511
 
5474
- def initialize(fulltext=nil, keyvalue=nil, tag=nil)
5512
+ def initialize(fulltext=nil, keyvalue=nil, tag=nil, dynamicindex=nil)
5475
5513
  @FullText = fulltext
5476
5514
  @KeyValue = keyvalue
5477
5515
  @Tag = tag
5516
+ @DynamicIndex = dynamicindex
5478
5517
  end
5479
5518
 
5480
5519
  def deserialize(params)
@@ -5490,6 +5529,10 @@ module TencentCloud
5490
5529
  @Tag = RuleTagInfo.new
5491
5530
  @Tag.deserialize(params['Tag'])
5492
5531
  end
5532
+ unless params['DynamicIndex'].nil?
5533
+ @DynamicIndex = DynamicIndex.new
5534
+ @DynamicIndex.deserialize(params['DynamicIndex'])
5535
+ end
5493
5536
  end
5494
5537
  end
5495
5538
 
@@ -5587,7 +5630,7 @@ module TencentCloud
5587
5630
  # @type SamplingRate: Float
5588
5631
  # @param SyntaxRule: 检索语法规则,默认值为0。
5589
5632
  # 0:Lucene语法,1:CQL语法。
5590
- # 详细说明参见https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules
5633
+ # 详细说明参见<a href="https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules" target="_blank">检索条件语法规则</a>
5591
5634
  # @type SyntaxRule: Integer
5592
5635
 
5593
5636
  attr_accessor :From, :To, :Query, :TopicId, :Limit, :Context, :Sort, :UseNewAnalysis, :SamplingRate, :SyntaxRule
@@ -5647,12 +5690,15 @@ module TencentCloud
5647
5690
  # 当UseNewAnalysis为true时生效
5648
5691
  # 注意:此字段可能返回 null,表示取不到有效值。
5649
5692
  # @type Columns: Array
5693
+ # @param SamplingRate: 本次统计分析使用的采样率
5694
+ # 注意:此字段可能返回 null,表示取不到有效值。
5695
+ # @type SamplingRate: Float
5650
5696
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5651
5697
  # @type RequestId: String
5652
5698
 
5653
- attr_accessor :Context, :ListOver, :Analysis, :Results, :ColNames, :AnalysisResults, :AnalysisRecords, :Columns, :RequestId
5699
+ attr_accessor :Context, :ListOver, :Analysis, :Results, :ColNames, :AnalysisResults, :AnalysisRecords, :Columns, :SamplingRate, :RequestId
5654
5700
 
5655
- 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)
5656
5702
  @Context = context
5657
5703
  @ListOver = listover
5658
5704
  @Analysis = analysis
@@ -5661,6 +5707,7 @@ module TencentCloud
5661
5707
  @AnalysisResults = analysisresults
5662
5708
  @AnalysisRecords = analysisrecords
5663
5709
  @Columns = columns
5710
+ @SamplingRate = samplingrate
5664
5711
  @RequestId = requestid
5665
5712
  end
5666
5713
 
@@ -5694,6 +5741,7 @@ module TencentCloud
5694
5741
  @Columns << column_tmp
5695
5742
  end
5696
5743
  end
5744
+ @SamplingRate = params['SamplingRate']
5697
5745
  @RequestId = params['RequestId']
5698
5746
  end
5699
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.546
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-07 00:00:00.000000000 Z
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