tencentcloud-sdk-cls 3.0.559 → 3.0.561
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 +81 -8
- 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: 2583bcf9e84aa36c8376b310c1ede84d97ba1aca
|
4
|
+
data.tar.gz: 2f79684143a8a6e055a892e461add1544001c30a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 512c31da020112c32f7043758b8473d2eafbf2586660150d72cf1a498978e48c5fdbd711ba0e41eb0a754c5355042f397d874249fa26736685a9f205d78fad64
|
7
|
+
data.tar.gz: 3fd70ff2ba35af3c0c1a7bb0bba90cc4570c128931301c55481af32b90dbaa290aaa10c360f63c1d5272ed5a4f40669e9c64614a938007f760a957864a6187ff
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.561
|
data/lib/v20201016/models.rb
CHANGED
@@ -1765,10 +1765,12 @@ module TencentCloud
|
|
1765
1765
|
# @type UpdateEndTime: String
|
1766
1766
|
# @param ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
1767
1767
|
# @type ServiceLogging: Boolean
|
1768
|
+
# @param MetaTags: 机器组元数据信息列表
|
1769
|
+
# @type MetaTags: Array
|
1768
1770
|
|
1769
|
-
attr_accessor :GroupName, :MachineGroupType, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging
|
1771
|
+
attr_accessor :GroupName, :MachineGroupType, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging, :MetaTags
|
1770
1772
|
|
1771
|
-
def initialize(groupname=nil, machinegrouptype=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil)
|
1773
|
+
def initialize(groupname=nil, machinegrouptype=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil, metatags=nil)
|
1772
1774
|
@GroupName = groupname
|
1773
1775
|
@MachineGroupType = machinegrouptype
|
1774
1776
|
@Tags = tags
|
@@ -1776,6 +1778,7 @@ module TencentCloud
|
|
1776
1778
|
@UpdateStartTime = updatestarttime
|
1777
1779
|
@UpdateEndTime = updateendtime
|
1778
1780
|
@ServiceLogging = servicelogging
|
1781
|
+
@MetaTags = metatags
|
1779
1782
|
end
|
1780
1783
|
|
1781
1784
|
def deserialize(params)
|
@@ -1796,6 +1799,14 @@ module TencentCloud
|
|
1796
1799
|
@UpdateStartTime = params['UpdateStartTime']
|
1797
1800
|
@UpdateEndTime = params['UpdateEndTime']
|
1798
1801
|
@ServiceLogging = params['ServiceLogging']
|
1802
|
+
unless params['MetaTags'].nil?
|
1803
|
+
@MetaTags = []
|
1804
|
+
params['MetaTags'].each do |i|
|
1805
|
+
metataginfo_tmp = MetaTagInfo.new
|
1806
|
+
metataginfo_tmp.deserialize(i)
|
1807
|
+
@MetaTags << metataginfo_tmp
|
1808
|
+
end
|
1809
|
+
end
|
1799
1810
|
end
|
1800
1811
|
end
|
1801
1812
|
|
@@ -3897,10 +3908,17 @@ module TencentCloud
|
|
3897
3908
|
# 该字段适用于:创建采集规则配置、修改采集规则配置
|
3898
3909
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3899
3910
|
# @type ParseProtocol: String
|
3911
|
+
# @param MetadataType: 元数据类型,0: 不使用元数据信息,1:使用机器组元数据,2:使用用户自定义元数据,3:使用采集配置路径,
|
3912
|
+
# @type MetadataType: Integer
|
3913
|
+
# @param PathRegex: 采集配置路径正则表达式,MetadataType为1时必填
|
3914
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3915
|
+
# @type PathRegex: String
|
3916
|
+
# @param MetaTags: 用户自定义元数据信息,MetadataType为2时必填
|
3917
|
+
# @type MetaTags: Array
|
3900
3918
|
|
3901
|
-
attr_accessor :TimeKey, :TimeFormat, :Delimiter, :LogRegex, :BeginRegex, :Keys, :FilterKeyRegex, :UnMatchUpLoadSwitch, :UnMatchLogKey, :Backtracking, :IsGBK, :JsonStandard, :Protocol, :Address, :ParseProtocol
|
3919
|
+
attr_accessor :TimeKey, :TimeFormat, :Delimiter, :LogRegex, :BeginRegex, :Keys, :FilterKeyRegex, :UnMatchUpLoadSwitch, :UnMatchLogKey, :Backtracking, :IsGBK, :JsonStandard, :Protocol, :Address, :ParseProtocol, :MetadataType, :PathRegex, :MetaTags
|
3902
3920
|
|
3903
|
-
def initialize(timekey=nil, timeformat=nil, delimiter=nil, logregex=nil, beginregex=nil, keys=nil, filterkeyregex=nil, unmatchuploadswitch=nil, unmatchlogkey=nil, backtracking=nil, isgbk=nil, jsonstandard=nil, protocol=nil, address=nil, parseprotocol=nil)
|
3921
|
+
def initialize(timekey=nil, timeformat=nil, delimiter=nil, logregex=nil, beginregex=nil, keys=nil, filterkeyregex=nil, unmatchuploadswitch=nil, unmatchlogkey=nil, backtracking=nil, isgbk=nil, jsonstandard=nil, protocol=nil, address=nil, parseprotocol=nil, metadatatype=nil, pathregex=nil, metatags=nil)
|
3904
3922
|
@TimeKey = timekey
|
3905
3923
|
@TimeFormat = timeformat
|
3906
3924
|
@Delimiter = delimiter
|
@@ -3916,6 +3934,9 @@ module TencentCloud
|
|
3916
3934
|
@Protocol = protocol
|
3917
3935
|
@Address = address
|
3918
3936
|
@ParseProtocol = parseprotocol
|
3937
|
+
@MetadataType = metadatatype
|
3938
|
+
@PathRegex = pathregex
|
3939
|
+
@MetaTags = metatags
|
3919
3940
|
end
|
3920
3941
|
|
3921
3942
|
def deserialize(params)
|
@@ -3941,6 +3962,16 @@ module TencentCloud
|
|
3941
3962
|
@Protocol = params['Protocol']
|
3942
3963
|
@Address = params['Address']
|
3943
3964
|
@ParseProtocol = params['ParseProtocol']
|
3965
|
+
@MetadataType = params['MetadataType']
|
3966
|
+
@PathRegex = params['PathRegex']
|
3967
|
+
unless params['MetaTags'].nil?
|
3968
|
+
@MetaTags = []
|
3969
|
+
params['MetaTags'].each do |i|
|
3970
|
+
metataginfo_tmp = MetaTagInfo.new
|
3971
|
+
metataginfo_tmp.deserialize(i)
|
3972
|
+
@MetaTags << metataginfo_tmp
|
3973
|
+
end
|
3974
|
+
end
|
3944
3975
|
end
|
3945
3976
|
end
|
3946
3977
|
|
@@ -4492,10 +4523,12 @@ module TencentCloud
|
|
4492
4523
|
# @param ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
4493
4524
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4494
4525
|
# @type ServiceLogging: Boolean
|
4526
|
+
# @param MetaTags: 机器组元数据信息列表
|
4527
|
+
# @type MetaTags: Array
|
4495
4528
|
|
4496
|
-
attr_accessor :GroupId, :GroupName, :MachineGroupType, :CreateTime, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging
|
4529
|
+
attr_accessor :GroupId, :GroupName, :MachineGroupType, :CreateTime, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging, :MetaTags
|
4497
4530
|
|
4498
|
-
def initialize(groupid=nil, groupname=nil, machinegrouptype=nil, createtime=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil)
|
4531
|
+
def initialize(groupid=nil, groupname=nil, machinegrouptype=nil, createtime=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil, metatags=nil)
|
4499
4532
|
@GroupId = groupid
|
4500
4533
|
@GroupName = groupname
|
4501
4534
|
@MachineGroupType = machinegrouptype
|
@@ -4505,6 +4538,7 @@ module TencentCloud
|
|
4505
4538
|
@UpdateStartTime = updatestarttime
|
4506
4539
|
@UpdateEndTime = updateendtime
|
4507
4540
|
@ServiceLogging = servicelogging
|
4541
|
+
@MetaTags = metatags
|
4508
4542
|
end
|
4509
4543
|
|
4510
4544
|
def deserialize(params)
|
@@ -4527,6 +4561,14 @@ module TencentCloud
|
|
4527
4561
|
@UpdateStartTime = params['UpdateStartTime']
|
4528
4562
|
@UpdateEndTime = params['UpdateEndTime']
|
4529
4563
|
@ServiceLogging = params['ServiceLogging']
|
4564
|
+
unless params['MetaTags'].nil?
|
4565
|
+
@MetaTags = []
|
4566
|
+
params['MetaTags'].each do |i|
|
4567
|
+
metataginfo_tmp = MetaTagInfo.new
|
4568
|
+
metataginfo_tmp.deserialize(i)
|
4569
|
+
@MetaTags << metataginfo_tmp
|
4570
|
+
end
|
4571
|
+
end
|
4530
4572
|
end
|
4531
4573
|
end
|
4532
4574
|
|
@@ -4641,6 +4683,26 @@ module TencentCloud
|
|
4641
4683
|
end
|
4642
4684
|
end
|
4643
4685
|
|
4686
|
+
# 元数据信息
|
4687
|
+
class MetaTagInfo < TencentCloud::Common::AbstractModel
|
4688
|
+
# @param Key: 元数据key
|
4689
|
+
# @type Key: String
|
4690
|
+
# @param Value: 元数据value
|
4691
|
+
# @type Value: String
|
4692
|
+
|
4693
|
+
attr_accessor :Key, :Value
|
4694
|
+
|
4695
|
+
def initialize(key=nil, value=nil)
|
4696
|
+
@Key = key
|
4697
|
+
@Value = value
|
4698
|
+
end
|
4699
|
+
|
4700
|
+
def deserialize(params)
|
4701
|
+
@Key = params['Key']
|
4702
|
+
@Value = params['Value']
|
4703
|
+
end
|
4704
|
+
end
|
4705
|
+
|
4644
4706
|
# ModifyAlarmNotice请求参数结构体
|
4645
4707
|
class ModifyAlarmNoticeRequest < TencentCloud::Common::AbstractModel
|
4646
4708
|
# @param AlarmNoticeId: 通知渠道组ID。
|
@@ -5210,10 +5272,12 @@ module TencentCloud
|
|
5210
5272
|
# @type UpdateEndTime: String
|
5211
5273
|
# @param ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
5212
5274
|
# @type ServiceLogging: Boolean
|
5275
|
+
# @param MetaTags: 机器组元数据信息列表
|
5276
|
+
# @type MetaTags: Array
|
5213
5277
|
|
5214
|
-
attr_accessor :GroupId, :GroupName, :MachineGroupType, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging
|
5278
|
+
attr_accessor :GroupId, :GroupName, :MachineGroupType, :Tags, :AutoUpdate, :UpdateStartTime, :UpdateEndTime, :ServiceLogging, :MetaTags
|
5215
5279
|
|
5216
|
-
def initialize(groupid=nil, groupname=nil, machinegrouptype=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil)
|
5280
|
+
def initialize(groupid=nil, groupname=nil, machinegrouptype=nil, tags=nil, autoupdate=nil, updatestarttime=nil, updateendtime=nil, servicelogging=nil, metatags=nil)
|
5217
5281
|
@GroupId = groupid
|
5218
5282
|
@GroupName = groupname
|
5219
5283
|
@MachineGroupType = machinegrouptype
|
@@ -5222,6 +5286,7 @@ module TencentCloud
|
|
5222
5286
|
@UpdateStartTime = updatestarttime
|
5223
5287
|
@UpdateEndTime = updateendtime
|
5224
5288
|
@ServiceLogging = servicelogging
|
5289
|
+
@MetaTags = metatags
|
5225
5290
|
end
|
5226
5291
|
|
5227
5292
|
def deserialize(params)
|
@@ -5243,6 +5308,14 @@ module TencentCloud
|
|
5243
5308
|
@UpdateStartTime = params['UpdateStartTime']
|
5244
5309
|
@UpdateEndTime = params['UpdateEndTime']
|
5245
5310
|
@ServiceLogging = params['ServiceLogging']
|
5311
|
+
unless params['MetaTags'].nil?
|
5312
|
+
@MetaTags = []
|
5313
|
+
params['MetaTags'].each do |i|
|
5314
|
+
metataginfo_tmp = MetaTagInfo.new
|
5315
|
+
metataginfo_tmp.deserialize(i)
|
5316
|
+
@MetaTags << metataginfo_tmp
|
5317
|
+
end
|
5318
|
+
end
|
5246
5319
|
end
|
5247
5320
|
end
|
5248
5321
|
|
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.561
|
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-
|
11
|
+
date: 2023-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|