tencentcloud-sdk-teo 3.0.444 → 3.0.445

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/v20220901/models.rb +19 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8e2a9165d2aeb4786d06932f1cb28ea702152fa7
4
- data.tar.gz: be6b5d3ecc58bf84fedd9bef777d52373ac08be7
3
+ metadata.gz: fcfeaa22a0014a1c89a9b465545c8c6da9cb6a04
4
+ data.tar.gz: f207341ab86f34f2848a222672554523340e287b
5
5
  SHA512:
6
- metadata.gz: 292555ed10709f742b9ca9cf5b39d0671e8b43e516be295a232f94416491ba0951b1e1e479f046954baf090cd0bb3ebdab6fbab33297c80ffdfdf521dfe30251
7
- data.tar.gz: 985df0a3db6f3e73de8aca817913b282c20bcea745b9531f3ab6b6086ac15fac8f395e2d941e7da6c526a2a71854cc49649a00083467c486fb26b02821744a08
6
+ metadata.gz: f61bfe71dd37e23a8dfb8c5725a2dca612c96905d060e0a0949f1fe22edfd538a1594ce44532a105fa665dc05b194b8ceef3dc0a00b0c95c76c14882d6dcba71
7
+ data.tar.gz: d790a6a200e0aa371cd4fb03236fe1f1deaf9bca2f7cdb045dd4e028a99dd4f5a74f27ead02a2d8ba0d801cacea4a49616ba8d3650deaac27aa40dc4d1820002
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.444
1
+ 3.0.445
@@ -12715,10 +12715,17 @@ module TencentCloud
12715
12715
  # @type Description: String
12716
12716
  # @param Domain: 子域名。
12717
12717
  # @type Domain: String
12718
+ # @param BotLabel: Bot标签,取值有:
12719
+ # <li>evil_bot:恶意Bot;</li>
12720
+ # <li>suspect_bot:疑似Bot;</li>
12721
+ # <li>good_bot:正常Bot;</li>
12722
+ # <li>normal:正常请求;</li>
12723
+ # <li>none:未分类。</li>
12724
+ # @type BotLabel: String
12718
12725
 
12719
- attr_accessor :RuleId, :RuleTypeName, :Action, :HitTime, :RequestNum, :Description, :Domain
12726
+ attr_accessor :RuleId, :RuleTypeName, :Action, :HitTime, :RequestNum, :Description, :Domain, :BotLabel
12720
12727
 
12721
- def initialize(ruleid=nil, ruletypename=nil, action=nil, hittime=nil, requestnum=nil, description=nil, domain=nil)
12728
+ def initialize(ruleid=nil, ruletypename=nil, action=nil, hittime=nil, requestnum=nil, description=nil, domain=nil, botlabel=nil)
12722
12729
  @RuleId = ruleid
12723
12730
  @RuleTypeName = ruletypename
12724
12731
  @Action = action
@@ -12726,6 +12733,7 @@ module TencentCloud
12726
12733
  @RequestNum = requestnum
12727
12734
  @Description = description
12728
12735
  @Domain = domain
12736
+ @BotLabel = botlabel
12729
12737
  end
12730
12738
 
12731
12739
  def deserialize(params)
@@ -12736,12 +12744,13 @@ module TencentCloud
12736
12744
  @RequestNum = params['RequestNum']
12737
12745
  @Description = params['Description']
12738
12746
  @Domain = params['Domain']
12747
+ @BotLabel = params['BotLabel']
12739
12748
  end
12740
12749
  end
12741
12750
 
12742
12751
  # 安全规则(cc/waf/bot)相关信息
12743
12752
  class SecRuleRelatedInfo < TencentCloud::Common::AbstractModel
12744
- # @param RuleId: 规则ID列表(99999为无效id)。
12753
+ # @param RuleId: 规则ID
12745
12754
  # @type RuleId: Integer
12746
12755
  # @param Action: 执行动作(处置方式),取值有:
12747
12756
  # <li>trans :通过 ;</li>
@@ -12765,16 +12774,20 @@ module TencentCloud
12765
12774
  # @type Description: String
12766
12775
  # @param RuleTypeName: 规则类型名称。
12767
12776
  # @type RuleTypeName: String
12777
+ # @param AttackContent: 攻击内容。
12778
+ # 注意:此字段可能返回 null,表示取不到有效值。
12779
+ # @type AttackContent: String
12768
12780
 
12769
- attr_accessor :RuleId, :Action, :RiskLevel, :RuleLevel, :Description, :RuleTypeName
12781
+ attr_accessor :RuleId, :Action, :RiskLevel, :RuleLevel, :Description, :RuleTypeName, :AttackContent
12770
12782
 
12771
- def initialize(ruleid=nil, action=nil, risklevel=nil, rulelevel=nil, description=nil, ruletypename=nil)
12783
+ def initialize(ruleid=nil, action=nil, risklevel=nil, rulelevel=nil, description=nil, ruletypename=nil, attackcontent=nil)
12772
12784
  @RuleId = ruleid
12773
12785
  @Action = action
12774
12786
  @RiskLevel = risklevel
12775
12787
  @RuleLevel = rulelevel
12776
12788
  @Description = description
12777
12789
  @RuleTypeName = ruletypename
12790
+ @AttackContent = attackcontent
12778
12791
  end
12779
12792
 
12780
12793
  def deserialize(params)
@@ -12784,6 +12797,7 @@ module TencentCloud
12784
12797
  @RuleLevel = params['RuleLevel']
12785
12798
  @Description = params['Description']
12786
12799
  @RuleTypeName = params['RuleTypeName']
12800
+ @AttackContent = params['AttackContent']
12787
12801
  end
12788
12802
  end
12789
12803
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-teo
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.444
4
+ version: 3.0.445
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-11-04 00:00:00.000000000 Z
11
+ date: 2022-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common