tencentcloud-sdk-cls 3.0.538 → 3.0.539

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 +32 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9e60bea60cecffa989d3d4535452017abad9fecf
4
- data.tar.gz: 65fd8e52d9daf010be5f5692e27feb811ba9f109
3
+ metadata.gz: 58d0f2d7b483f321231b097781213d946f1d9405
4
+ data.tar.gz: f08e4cdaa9bbdc6d611a6fd3b567197edbeba6a7
5
5
  SHA512:
6
- metadata.gz: 082258bfd2df1a5a4469d3d0853d12a253a97b4fa1d0505ca7483a623ed41eb6691df4d363a626369564198a19ffb3bc9e3adeb1c423533b48a4ff8750a56ecf
7
- data.tar.gz: 58313c81410fc9c7f00d990bd868b5f4eb0354d61f293992407584eed348982f90961aac27fe84949637e96bb54c0f10d9b41760cf1255dbeac78ac8d50681eb
6
+ metadata.gz: 7167d075c7fca8b132803ac2f5f7e7c08055310d3ce1553451a1ae717ba3df5d353c3017923e394454c6fff4d76497458a6793b82e3c7156e09226bf143884f8
7
+ data.tar.gz: e284d01a31d0a558a095418f71751f5790a9f7642ad9345718c61a364baaada1bf3c18e9ac72d9a92e821346be0efdbbd07bfb837422b8ad4b3877b2c561bb63
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.538
1
+ 3.0.539
@@ -4094,10 +4094,16 @@ module TencentCloud
4094
4094
  # @param HostName: 日志来源主机名称
4095
4095
  # 注意:此字段可能返回 null,表示取不到有效值。
4096
4096
  # @type HostName: String
4097
+ # @param RawLog: 原始日志(仅在日志创建索引异常时有值)
4098
+ # 注意:此字段可能返回 null,表示取不到有效值。
4099
+ # @type RawLog: String
4100
+ # @param IndexStatus: 日志创建索引异常原因(仅在日志创建索引异常时有值)
4101
+ # 注意:此字段可能返回 null,表示取不到有效值。
4102
+ # @type IndexStatus: String
4097
4103
 
4098
- attr_accessor :Source, :Filename, :Content, :PkgId, :PkgLogId, :BTime, :HostName
4104
+ attr_accessor :Source, :Filename, :Content, :PkgId, :PkgLogId, :BTime, :HostName, :RawLog, :IndexStatus
4099
4105
 
4100
- def initialize(source=nil, filename=nil, content=nil, pkgid=nil, pkglogid=nil, btime=nil, hostname=nil)
4106
+ def initialize(source=nil, filename=nil, content=nil, pkgid=nil, pkglogid=nil, btime=nil, hostname=nil, rawlog=nil, indexstatus=nil)
4101
4107
  @Source = source
4102
4108
  @Filename = filename
4103
4109
  @Content = content
@@ -4105,6 +4111,8 @@ module TencentCloud
4105
4111
  @PkgLogId = pkglogid
4106
4112
  @BTime = btime
4107
4113
  @HostName = hostname
4114
+ @RawLog = rawlog
4115
+ @IndexStatus = indexstatus
4108
4116
  end
4109
4117
 
4110
4118
  def deserialize(params)
@@ -4115,6 +4123,8 @@ module TencentCloud
4115
4123
  @PkgLogId = params['PkgLogId']
4116
4124
  @BTime = params['BTime']
4117
4125
  @HostName = params['HostName']
4126
+ @RawLog = params['RawLog']
4127
+ @IndexStatus = params['IndexStatus']
4118
4128
  end
4119
4129
  end
4120
4130
 
@@ -4140,10 +4150,16 @@ module TencentCloud
4140
4150
  # @param HostName: 日志来源主机名称
4141
4151
  # 注意:此字段可能返回 null,表示取不到有效值。
4142
4152
  # @type HostName: String
4153
+ # @param RawLog: 原始日志(仅在日志创建索引异常时有值)
4154
+ # 注意:此字段可能返回 null,表示取不到有效值。
4155
+ # @type RawLog: String
4156
+ # @param IndexStatus: 日志创建索引异常原因(仅在日志创建索引异常时有值)
4157
+ # 注意:此字段可能返回 null,表示取不到有效值。
4158
+ # @type IndexStatus: String
4143
4159
 
4144
- attr_accessor :Time, :TopicId, :TopicName, :Source, :FileName, :PkgId, :PkgLogId, :LogJson, :HostName
4160
+ attr_accessor :Time, :TopicId, :TopicName, :Source, :FileName, :PkgId, :PkgLogId, :LogJson, :HostName, :RawLog, :IndexStatus
4145
4161
 
4146
- def initialize(time=nil, topicid=nil, topicname=nil, source=nil, filename=nil, pkgid=nil, pkglogid=nil, logjson=nil, hostname=nil)
4162
+ def initialize(time=nil, topicid=nil, topicname=nil, source=nil, filename=nil, pkgid=nil, pkglogid=nil, logjson=nil, hostname=nil, rawlog=nil, indexstatus=nil)
4147
4163
  @Time = time
4148
4164
  @TopicId = topicid
4149
4165
  @TopicName = topicname
@@ -4153,6 +4169,8 @@ module TencentCloud
4153
4169
  @PkgLogId = pkglogid
4154
4170
  @LogJson = logjson
4155
4171
  @HostName = hostname
4172
+ @RawLog = rawlog
4173
+ @IndexStatus = indexstatus
4156
4174
  end
4157
4175
 
4158
4176
  def deserialize(params)
@@ -4165,6 +4183,8 @@ module TencentCloud
4165
4183
  @PkgLogId = params['PkgLogId']
4166
4184
  @LogJson = params['LogJson']
4167
4185
  @HostName = params['HostName']
4186
+ @RawLog = params['RawLog']
4187
+ @IndexStatus = params['IndexStatus']
4168
4188
  end
4169
4189
  end
4170
4190
 
@@ -5561,10 +5581,14 @@ module TencentCloud
5561
5581
  # 1:不采样,即精确分析
5562
5582
  # 默认值为1
5563
5583
  # @type SamplingRate: Float
5584
+ # @param SyntaxRule: 检索语法规则,默认值为0。
5585
+ # 0:Lucene语法,1:CQL语法。
5586
+ # 详细说明参见https://cloud.tencent.com/document/product/614/47044#RetrievesConditionalRules
5587
+ # @type SyntaxRule: Integer
5564
5588
 
5565
- attr_accessor :From, :To, :Query, :TopicId, :Limit, :Context, :Sort, :UseNewAnalysis, :SamplingRate
5589
+ attr_accessor :From, :To, :Query, :TopicId, :Limit, :Context, :Sort, :UseNewAnalysis, :SamplingRate, :SyntaxRule
5566
5590
 
5567
- def initialize(from=nil, to=nil, query=nil, topicid=nil, limit=nil, context=nil, sort=nil, usenewanalysis=nil, samplingrate=nil)
5591
+ def initialize(from=nil, to=nil, query=nil, topicid=nil, limit=nil, context=nil, sort=nil, usenewanalysis=nil, samplingrate=nil, syntaxrule=nil)
5568
5592
  @From = from
5569
5593
  @To = to
5570
5594
  @Query = query
@@ -5574,6 +5598,7 @@ module TencentCloud
5574
5598
  @Sort = sort
5575
5599
  @UseNewAnalysis = usenewanalysis
5576
5600
  @SamplingRate = samplingrate
5601
+ @SyntaxRule = syntaxrule
5577
5602
  end
5578
5603
 
5579
5604
  def deserialize(params)
@@ -5586,6 +5611,7 @@ module TencentCloud
5586
5611
  @Sort = params['Sort']
5587
5612
  @UseNewAnalysis = params['UseNewAnalysis']
5588
5613
  @SamplingRate = params['SamplingRate']
5614
+ @SyntaxRule = params['SyntaxRule']
5589
5615
  end
5590
5616
  end
5591
5617
 
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.538
4
+ version: 3.0.539
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-03-27 00:00:00.000000000 Z
11
+ date: 2023-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common