tencentcloud-sdk-cls 3.0.652 → 3.0.654
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 +14 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 123eb15f8fdc98c232ac9244492052a9f9ebce1e
|
4
|
+
data.tar.gz: 118445c2abf9325afe37b49788c6d984917b7c7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e699f9fe30c10fe7eb60224dfa6ff81dab9fd8e130758d021b5c389f362fb5f15af8d3ce9b902485b7d1829da1937ecbc8edde9d6fbed1720fec075501b0e528
|
7
|
+
data.tar.gz: f1c20725d05c07c0115a02079d2898585d830c767ca8fb0442e25315f7214a7708c09bd40d98959cd330340f65e7a3cdd631e61f8a296b54e1dfd1552aa94a8b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.654
|
data/lib/v20201016/models.rb
CHANGED
@@ -5021,10 +5021,13 @@ module TencentCloud
|
|
5021
5021
|
# @type CosPath: String
|
5022
5022
|
# @param CreateTime: 日志导出创建时间
|
5023
5023
|
# @type CreateTime: String
|
5024
|
+
# @param SyntaxRule: 语法规则。 默认值为0。
|
5025
|
+
# 0:Lucene语法,1:CQL语法。
|
5026
|
+
# @type SyntaxRule: Integer
|
5024
5027
|
|
5025
|
-
attr_accessor :TopicId, :ExportId, :Query, :FileName, :FileSize, :Order, :Format, :Count, :Status, :From, :To, :CosPath, :CreateTime
|
5028
|
+
attr_accessor :TopicId, :ExportId, :Query, :FileName, :FileSize, :Order, :Format, :Count, :Status, :From, :To, :CosPath, :CreateTime, :SyntaxRule
|
5026
5029
|
|
5027
|
-
def initialize(topicid=nil, exportid=nil, query=nil, filename=nil, filesize=nil, order=nil, format=nil, count=nil, status=nil, from=nil, to=nil, cospath=nil, createtime=nil)
|
5030
|
+
def initialize(topicid=nil, exportid=nil, query=nil, filename=nil, filesize=nil, order=nil, format=nil, count=nil, status=nil, from=nil, to=nil, cospath=nil, createtime=nil, syntaxrule=nil)
|
5028
5031
|
@TopicId = topicid
|
5029
5032
|
@ExportId = exportid
|
5030
5033
|
@Query = query
|
@@ -5038,6 +5041,7 @@ module TencentCloud
|
|
5038
5041
|
@To = to
|
5039
5042
|
@CosPath = cospath
|
5040
5043
|
@CreateTime = createtime
|
5044
|
+
@SyntaxRule = syntaxrule
|
5041
5045
|
end
|
5042
5046
|
|
5043
5047
|
def deserialize(params)
|
@@ -5054,6 +5058,7 @@ module TencentCloud
|
|
5054
5058
|
@To = params['To']
|
5055
5059
|
@CosPath = params['CosPath']
|
5056
5060
|
@CreateTime = params['CreateTime']
|
5061
|
+
@SyntaxRule = params['SyntaxRule']
|
5057
5062
|
end
|
5058
5063
|
end
|
5059
5064
|
|
@@ -6079,6 +6084,9 @@ module TencentCloud
|
|
6079
6084
|
class MachineInfo < TencentCloud::Common::AbstractModel
|
6080
6085
|
# @param Ip: 机器的IP
|
6081
6086
|
# @type Ip: String
|
6087
|
+
# @param InstanceID: 机器实例ID
|
6088
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6089
|
+
# @type InstanceID: String
|
6082
6090
|
# @param Status: 机器状态,0:异常,1:正常
|
6083
6091
|
# @type Status: Integer
|
6084
6092
|
# @param OfflineTime: 机器离线时间,空为正常,异常返回具体时间
|
@@ -6094,10 +6102,11 @@ module TencentCloud
|
|
6094
6102
|
# @param ErrMsg: 机器升级结果信息。
|
6095
6103
|
# @type ErrMsg: String
|
6096
6104
|
|
6097
|
-
attr_accessor :Ip, :Status, :OfflineTime, :AutoUpdate, :Version, :UpdateStatus, :ErrCode, :ErrMsg
|
6105
|
+
attr_accessor :Ip, :InstanceID, :Status, :OfflineTime, :AutoUpdate, :Version, :UpdateStatus, :ErrCode, :ErrMsg
|
6098
6106
|
|
6099
|
-
def initialize(ip=nil, status=nil, offlinetime=nil, autoupdate=nil, version=nil, updatestatus=nil, errcode=nil, errmsg=nil)
|
6107
|
+
def initialize(ip=nil, instanceid=nil, status=nil, offlinetime=nil, autoupdate=nil, version=nil, updatestatus=nil, errcode=nil, errmsg=nil)
|
6100
6108
|
@Ip = ip
|
6109
|
+
@InstanceID = instanceid
|
6101
6110
|
@Status = status
|
6102
6111
|
@OfflineTime = offlinetime
|
6103
6112
|
@AutoUpdate = autoupdate
|
@@ -6109,6 +6118,7 @@ module TencentCloud
|
|
6109
6118
|
|
6110
6119
|
def deserialize(params)
|
6111
6120
|
@Ip = params['Ip']
|
6121
|
+
@InstanceID = params['InstanceID']
|
6112
6122
|
@Status = params['Status']
|
6113
6123
|
@OfflineTime = params['OfflineTime']
|
6114
6124
|
@AutoUpdate = params['AutoUpdate']
|
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.654
|
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-09-
|
11
|
+
date: 2023-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -34,8 +34,8 @@ extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
36
|
- lib/tencentcloud-sdk-cls.rb
|
37
|
-
- lib/v20201016/client.rb
|
38
37
|
- lib/v20201016/models.rb
|
38
|
+
- lib/v20201016/client.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|