tencentcloud-sdk-cls 3.0.882 → 3.0.883

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201016/models.rb +20 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a650cb51dc80019c2f7cc99e74a4475aea5e3dc
4
- data.tar.gz: 107e36f3a2f1bc4c67eb3a83b1f6a46f6eb5bd56
3
+ metadata.gz: 01d4c22c9f26eb1bea77f77dc94d5b447af9c456
4
+ data.tar.gz: 1359e7872bb436aac012c2471514be108732cc46
5
5
  SHA512:
6
- metadata.gz: 842ea5c79f6290558755544211992fa30e74853bfb86216b0e17bc404e0042fc2473f2291447b6674269897f126e50bfb54184075eb186527df6531faadfb3ce
7
- data.tar.gz: a29743b62f6e355db3540116f71f19ee6ea02e98da9f3d58698f583ded0f336ed37780980cd66e388c38429d48c0c9489194f93d79e7c9abfd7bc9c2606b8411
6
+ metadata.gz: 0b0f82ff107d2971110c36b62fe02233115137aa6e8be6c087cc38298f05f01f3c190e0184666e99f9f8389afbdb35b347f2425f794e1105ea6098e629356211
7
+ data.tar.gz: aef6763d39377347492bf12fc707dcaa0369e45e39b3602db8caa48853d2b9185e56ac8a5cb166a2b30dc2c2a5be097ff33c2636873c40fdb20144e62b1bb6ba
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.882
1
+ 3.0.883
@@ -10003,16 +10003,26 @@ module TencentCloud
10003
10003
  # - 检索单个日志主题时请使用TopicId。
10004
10004
  # - TopicId 和 Topics 不能同时使用,在一次请求中有且只能选择一个。
10005
10005
  # @type Topics: Array
10006
- # @param Limit: 表示单次查询返回的原始日志条数,默认为100,最大值为1000,获取后续日志需使用Context参数
10006
+ # @param Sort: 原始日志是否按时间排序返回;可选值:asc(升序)、desc(降序),默认为 desc
10007
+ # 注意:
10008
+ # * 仅当检索分析语句(Query)不包含SQL时有效
10009
+ # * SQL结果排序方式参考<a href="https://cloud.tencent.com/document/product/614/58978" target="_blank">SQL ORDER BY语法</a>
10010
+ # @type Sort: String
10011
+ # @param Limit: 表示单次查询返回的原始日志条数,默认为100,最大值为1000。
10007
10012
  # 注意:
10008
10013
  # * 仅当检索分析语句(Query)不包含SQL时有效
10009
10014
  # * SQL结果条数指定方式参考<a href="https://cloud.tencent.com/document/product/614/58977" target="_blank">SQL LIMIT语法</a>
10015
+
10016
+ # 可通过两种方式获取后续更多日志:
10017
+ # * Context:透传上次接口返回的Context值,获取后续更多日志,总计最多可获取1万条原始日志
10018
+ # * Offset:偏移量,表示从第几行开始返回原始日志,无日志条数限制
10010
10019
  # @type Limit: Integer
10011
- # @param Sort: 原始日志是否按时间排序返回;可选值:asc(升序)、desc(降序),默认为 desc
10020
+ # @param Offset: 查询原始日志的偏移量,表示从第几行开始返回原始日志,默认为0。
10012
10021
  # 注意:
10013
10022
  # * 仅当检索分析语句(Query)不包含SQL时有效
10014
- # * SQL结果排序方式参考<a href="https://cloud.tencent.com/document/product/614/58978" target="_blank">SQL ORDER BY语法</a>
10015
- # @type Sort: String
10023
+ # * 不能与Context参数同时使用
10024
+ # * 仅适用于单日志主题检索
10025
+ # @type Offset: Integer
10016
10026
  # @param Context: 透传上次接口返回的Context值,可获取后续更多日志,总计最多可获取1万条原始日志,过期时间1小时。
10017
10027
  # 注意:
10018
10028
  # * 透传该参数时,请勿修改除该参数外的其它参数
@@ -10030,17 +10040,18 @@ module TencentCloud
10030
10040
  # 两种返回方式在编码格式上有少量区别,建议使用true
10031
10041
  # @type UseNewAnalysis: Boolean
10032
10042
 
10033
- attr_accessor :From, :To, :Query, :SyntaxRule, :TopicId, :Topics, :Limit, :Sort, :Context, :SamplingRate, :UseNewAnalysis
10043
+ attr_accessor :From, :To, :Query, :SyntaxRule, :TopicId, :Topics, :Sort, :Limit, :Offset, :Context, :SamplingRate, :UseNewAnalysis
10034
10044
 
10035
- def initialize(from=nil, to=nil, query=nil, syntaxrule=nil, topicid=nil, topics=nil, limit=nil, sort=nil, context=nil, samplingrate=nil, usenewanalysis=nil)
10045
+ def initialize(from=nil, to=nil, query=nil, syntaxrule=nil, topicid=nil, topics=nil, sort=nil, limit=nil, offset=nil, context=nil, samplingrate=nil, usenewanalysis=nil)
10036
10046
  @From = from
10037
10047
  @To = to
10038
10048
  @Query = query
10039
10049
  @SyntaxRule = syntaxrule
10040
10050
  @TopicId = topicid
10041
10051
  @Topics = topics
10042
- @Limit = limit
10043
10052
  @Sort = sort
10053
+ @Limit = limit
10054
+ @Offset = offset
10044
10055
  @Context = context
10045
10056
  @SamplingRate = samplingrate
10046
10057
  @UseNewAnalysis = usenewanalysis
@@ -10060,8 +10071,9 @@ module TencentCloud
10060
10071
  @Topics << multitopicsearchinformation_tmp
10061
10072
  end
10062
10073
  end
10063
- @Limit = params['Limit']
10064
10074
  @Sort = params['Sort']
10075
+ @Limit = params['Limit']
10076
+ @Offset = params['Offset']
10065
10077
  @Context = params['Context']
10066
10078
  @SamplingRate = params['SamplingRate']
10067
10079
  @UseNewAnalysis = params['UseNewAnalysis']
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.882
4
+ version: 3.0.883
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-08 00:00:00.000000000 Z
11
+ date: 2024-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common