tencentcloud-sdk-cls 3.0.832 → 3.0.834
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 +26 -6
- 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: 87c0f01fe5138d8816c42848f172727ca7d57cb1
|
4
|
+
data.tar.gz: d5786252b2a630f4c984f6fc0b321dcd96cee953
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30493c4220a10a8a0fd89b7d41d812a88dd8b86d21db829646741e8cc56162166c6a01aeeeea194871b2050187a86178d5ff42a9339cd275f12841120d6d29ef
|
7
|
+
data.tar.gz: 97f23c7e974f1764e59c980d1480b22d60db9d02b43b8146aaf73d74dd6ae6ff01b01ec708cf9c57e0fc0c4f880a1024861e1df851f3f77ef850156434a675d7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.834
|
data/lib/v20201016/models.rb
CHANGED
@@ -5068,27 +5068,44 @@ module TencentCloud
|
|
5068
5068
|
class DescribeLogContextRequest < TencentCloud::Common::AbstractModel
|
5069
5069
|
# @param TopicId: 要查询的日志主题ID
|
5070
5070
|
# @type TopicId: String
|
5071
|
-
# @param BTime: 日志时间,
|
5071
|
+
# @param BTime: 日志时间, 即SearchLog接口返回信息中Results结构体中的Time,需按照 UTC+8 时区将该毫秒级Unix时间戳转换为 YYYY-mm-dd HH:MM:SS.FFF 格式的字符串。
|
5072
5072
|
# @type BTime: String
|
5073
|
-
# @param PkgId:
|
5073
|
+
# @param PkgId: 日志包序号,即SearchLog接口返回信息中Results结构体中的PkgId。
|
5074
5074
|
# @type PkgId: String
|
5075
|
-
# @param PkgLogId:
|
5076
|
-
# SearchLog接口返回信息中Results结构中的PkgLogId。
|
5075
|
+
# @param PkgLogId: 日志包内一条日志的序号,即SearchLog接口返回信息中Results结构中的PkgLogId。
|
5077
5076
|
# @type PkgLogId: Integer
|
5078
5077
|
# @param PrevLogs: 前${PrevLogs}条日志,默认值10。
|
5079
5078
|
# @type PrevLogs: Integer
|
5080
5079
|
# @param NextLogs: 后${NextLogs}条日志,默认值10。
|
5081
5080
|
# @type NextLogs: Integer
|
5081
|
+
# @param Query: 检索语句,对日志上下文进行过滤,最大长度为12KB
|
5082
|
+
# 语句由 <a href="https://cloud.tencent.com/document/product/614/47044" target="_blank">[检索条件]</a>构成,不支持SQL语句
|
5083
|
+
# @type Query: String
|
5084
|
+
# @param From: 上下文检索的开始时间,单位:毫秒级时间戳
|
5085
|
+
# 注意:
|
5086
|
+
# - From为空时,表示上下文检索的开始时间不做限制
|
5087
|
+
# - From和To非空时,From < To
|
5088
|
+
# - 暂时仅支持上海 / 弗吉尼亚/ 新加坡地域
|
5089
|
+
# @type From: Integer
|
5090
|
+
# @param To: 上下文检索的结束时间,单位:毫秒级时间戳。
|
5091
|
+
# 注意:
|
5092
|
+
# - To为空时,表示上下文检索的结束时间不做限制
|
5093
|
+
# - From和To非空时,From < To
|
5094
|
+
# - 暂时仅支持上海 / 弗吉尼亚/ 新加坡地域
|
5095
|
+
# @type To: Integer
|
5082
5096
|
|
5083
|
-
attr_accessor :TopicId, :BTime, :PkgId, :PkgLogId, :PrevLogs, :NextLogs
|
5097
|
+
attr_accessor :TopicId, :BTime, :PkgId, :PkgLogId, :PrevLogs, :NextLogs, :Query, :From, :To
|
5084
5098
|
|
5085
|
-
def initialize(topicid=nil, btime=nil, pkgid=nil, pkglogid=nil, prevlogs=nil, nextlogs=nil)
|
5099
|
+
def initialize(topicid=nil, btime=nil, pkgid=nil, pkglogid=nil, prevlogs=nil, nextlogs=nil, query=nil, from=nil, to=nil)
|
5086
5100
|
@TopicId = topicid
|
5087
5101
|
@BTime = btime
|
5088
5102
|
@PkgId = pkgid
|
5089
5103
|
@PkgLogId = pkglogid
|
5090
5104
|
@PrevLogs = prevlogs
|
5091
5105
|
@NextLogs = nextlogs
|
5106
|
+
@Query = query
|
5107
|
+
@From = from
|
5108
|
+
@To = to
|
5092
5109
|
end
|
5093
5110
|
|
5094
5111
|
def deserialize(params)
|
@@ -5098,6 +5115,9 @@ module TencentCloud
|
|
5098
5115
|
@PkgLogId = params['PkgLogId']
|
5099
5116
|
@PrevLogs = params['PrevLogs']
|
5100
5117
|
@NextLogs = params['NextLogs']
|
5118
|
+
@Query = params['Query']
|
5119
|
+
@From = params['From']
|
5120
|
+
@To = params['To']
|
5101
5121
|
end
|
5102
5122
|
end
|
5103
5123
|
|
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.834
|
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-05-
|
11
|
+
date: 2024-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|