tencentcloud-sdk-cls 3.0.415 → 3.0.416
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201016/models.rb +22 -2
- 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: 61afdc24648a54ab71552c7b8bfd38cf65581e15
|
4
|
+
data.tar.gz: 1bd5c669cf67e8cc4d2bd6230d76d0aed2fafe66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c0df14c972fc7b17e658a048fddc15e33cff2e8081d33769bb02d7df92f481df2223e774c8b41cf9ce3e972a175beb2a41cc00363954b3ab130250b004bde9c
|
7
|
+
data.tar.gz: a6cd1ec76f93bd025f762306abd780d070903076d0eaa41967b0bfaf1f6b34cd38415210541bfb1f9070a1b75c8a5b11bc0cba8a1a7bfdb861eee700dba510d3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.416
|
data/lib/v20201016/models.rb
CHANGED
@@ -3410,10 +3410,24 @@ module TencentCloud
|
|
3410
3410
|
# @param JsonStandard: 是否为标准json. 0: 否, 1: 是
|
3411
3411
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3412
3412
|
# @type JsonStandard: Integer
|
3413
|
+
# @param Protocol: syslog传输协议,取值为tcp或者udp。
|
3414
|
+
# 该接口适用于:创建采集规则配置、修改采集规则配置
|
3415
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3416
|
+
# @type Protocol: String
|
3417
|
+
# @param Address: syslog系统日志采集指定采集器监听的地址和端口 ,形式:[ip]:[port]。举例:127.0.0.1:9000
|
3418
|
+
# 该接口适用于:创建采集规则配置、修改采集规则配置
|
3419
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3420
|
+
# @type Address: String
|
3421
|
+
# @param ParseProtocol: rfc3164:指定系统日志采集使用RFC3164协议解析日志。
|
3422
|
+
# rfc5424:指定系统日志采集使用RFC5424协议解析日志。
|
3423
|
+
# auto:自动匹配rfc3164或者rfc5424其中一种协议
|
3424
|
+
# 该接口适用于:创建采集规则配置、修改采集规则配置
|
3425
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3426
|
+
# @type ParseProtocol: String
|
3413
3427
|
|
3414
|
-
attr_accessor :TimeKey, :TimeFormat, :Delimiter, :LogRegex, :BeginRegex, :Keys, :FilterKeyRegex, :UnMatchUpLoadSwitch, :UnMatchLogKey, :Backtracking, :IsGBK, :JsonStandard
|
3428
|
+
attr_accessor :TimeKey, :TimeFormat, :Delimiter, :LogRegex, :BeginRegex, :Keys, :FilterKeyRegex, :UnMatchUpLoadSwitch, :UnMatchLogKey, :Backtracking, :IsGBK, :JsonStandard, :Protocol, :Address, :ParseProtocol
|
3415
3429
|
|
3416
|
-
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)
|
3430
|
+
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)
|
3417
3431
|
@TimeKey = timekey
|
3418
3432
|
@TimeFormat = timeformat
|
3419
3433
|
@Delimiter = delimiter
|
@@ -3426,6 +3440,9 @@ module TencentCloud
|
|
3426
3440
|
@Backtracking = backtracking
|
3427
3441
|
@IsGBK = isgbk
|
3428
3442
|
@JsonStandard = jsonstandard
|
3443
|
+
@Protocol = protocol
|
3444
|
+
@Address = address
|
3445
|
+
@ParseProtocol = parseprotocol
|
3429
3446
|
end
|
3430
3447
|
|
3431
3448
|
def deserialize(params)
|
@@ -3448,6 +3465,9 @@ module TencentCloud
|
|
3448
3465
|
@Backtracking = params['Backtracking']
|
3449
3466
|
@IsGBK = params['IsGBK']
|
3450
3467
|
@JsonStandard = params['JsonStandard']
|
3468
|
+
@Protocol = params['Protocol']
|
3469
|
+
@Address = params['Address']
|
3470
|
+
@ParseProtocol = params['ParseProtocol']
|
3451
3471
|
end
|
3452
3472
|
end
|
3453
3473
|
|
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.416
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|