tencentcloud-sdk-cfw 3.0.543 → 3.0.545

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190904/models.rb +47 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d5b5fe4fe4b9f334671b3dfc586b3534f759dc1
4
- data.tar.gz: 59a4a603d1e35ea69cae5638400776abceb86225
3
+ metadata.gz: 970e6b65f0e6c68d6c1da6d1b3b6d1ca8867befb
4
+ data.tar.gz: a6de89f4c52f891a552ca41d246162ad5b5168f3
5
5
  SHA512:
6
- metadata.gz: d5168d2dfb65ac7a5ac4d835ca8033a0d6d9dfa2f0169bc84e2605c362419f60f9685254b53678117a3a1c6761fd2670285be0fea62c87068eda4510d2531f3c
7
- data.tar.gz: d9bd406907e46a6a248683216cafc62db562f602f808257d5bacf3992a7b80483bc6427007855409a6dd8d238d3ff0432285a8d2b3d542d3b81a83614e7db385
6
+ metadata.gz: 7b2176112474f782e409808c5a3db0c52aeb08aa24ff9b9f021e48a3f862bbefcd14f0c93c4fa4b05b291e0a944bc75f407ec893e722e16f463b5dbee04444ff
7
+ data.tar.gz: 7ba8936c6c993a83414dcf6c34778725213664148a5a2cc475c671cfe433bb2eb20029120efb645329582dc7261902e9acbb1e6b2d823bce888ead553051167e
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.543
1
+ 3.0.545
@@ -388,6 +388,33 @@ module TencentCloud
388
388
  end
389
389
  end
390
390
 
391
+ # 规则关联的beta任务
392
+ class BetaInfoByACL < TencentCloud::Common::AbstractModel
393
+ # @param TaskId: 任务id
394
+ # 注意:此字段可能返回 null,表示取不到有效值。
395
+ # @type TaskId: Integer
396
+ # @param TaskName: 任务名称
397
+ # 注意:此字段可能返回 null,表示取不到有效值。
398
+ # @type TaskName: String
399
+ # @param LastTime: 上次执行时间
400
+ # 注意:此字段可能返回 null,表示取不到有效值。
401
+ # @type LastTime: String
402
+
403
+ attr_accessor :TaskId, :TaskName, :LastTime
404
+
405
+ def initialize(taskid=nil, taskname=nil, lasttime=nil)
406
+ @TaskId = taskid
407
+ @TaskName = taskname
408
+ @LastTime = lasttime
409
+ end
410
+
411
+ def deserialize(params)
412
+ @TaskId = params['TaskId']
413
+ @TaskName = params['TaskName']
414
+ @LastTime = params['LastTime']
415
+ end
416
+ end
417
+
391
418
  # 入侵防御放通封禁规则
392
419
  class BlockIgnoreRule < TencentCloud::Common::AbstractModel
393
420
  # @param Domain: 域名
@@ -1379,10 +1406,13 @@ module TencentCloud
1379
1406
  # @param Status: 规则状态,查询规则命中详情时该字段有效,0:新增,1: 已删除, 2: 编辑删除
1380
1407
  # 注意:此字段可能返回 null,表示取不到有效值。
1381
1408
  # @type Status: Integer
1409
+ # @param BetaList: 关联任务详情
1410
+ # 注意:此字段可能返回 null,表示取不到有效值。
1411
+ # @type BetaList: Array
1382
1412
 
1383
- attr_accessor :SourceContent, :TargetContent, :Protocol, :Port, :RuleAction, :Description, :Count, :OrderIndex, :SourceType, :TargetType, :Uuid, :Invalid, :IsRegion, :CountryCode, :CityCode, :CountryName, :CityName, :CloudCode, :IsCloud, :Enable, :Direction, :InstanceName, :InternalUuid, :Status
1413
+ attr_accessor :SourceContent, :TargetContent, :Protocol, :Port, :RuleAction, :Description, :Count, :OrderIndex, :SourceType, :TargetType, :Uuid, :Invalid, :IsRegion, :CountryCode, :CityCode, :CountryName, :CityName, :CloudCode, :IsCloud, :Enable, :Direction, :InstanceName, :InternalUuid, :Status, :BetaList
1384
1414
 
1385
- def initialize(sourcecontent=nil, targetcontent=nil, protocol=nil, port=nil, ruleaction=nil, description=nil, count=nil, orderindex=nil, sourcetype=nil, targettype=nil, uuid=nil, invalid=nil, isregion=nil, countrycode=nil, citycode=nil, countryname=nil, cityname=nil, cloudcode=nil, iscloud=nil, enable=nil, direction=nil, instancename=nil, internaluuid=nil, status=nil)
1415
+ def initialize(sourcecontent=nil, targetcontent=nil, protocol=nil, port=nil, ruleaction=nil, description=nil, count=nil, orderindex=nil, sourcetype=nil, targettype=nil, uuid=nil, invalid=nil, isregion=nil, countrycode=nil, citycode=nil, countryname=nil, cityname=nil, cloudcode=nil, iscloud=nil, enable=nil, direction=nil, instancename=nil, internaluuid=nil, status=nil, betalist=nil)
1386
1416
  @SourceContent = sourcecontent
1387
1417
  @TargetContent = targetcontent
1388
1418
  @Protocol = protocol
@@ -1407,6 +1437,7 @@ module TencentCloud
1407
1437
  @InstanceName = instancename
1408
1438
  @InternalUuid = internaluuid
1409
1439
  @Status = status
1440
+ @BetaList = betalist
1410
1441
  end
1411
1442
 
1412
1443
  def deserialize(params)
@@ -1434,6 +1465,14 @@ module TencentCloud
1434
1465
  @InstanceName = params['InstanceName']
1435
1466
  @InternalUuid = params['InternalUuid']
1436
1467
  @Status = params['Status']
1468
+ unless params['BetaList'].nil?
1469
+ @BetaList = []
1470
+ params['BetaList'].each do |i|
1471
+ betainfobyacl_tmp = BetaInfoByACL.new
1472
+ betainfobyacl_tmp.deserialize(i)
1473
+ @BetaList << betainfobyacl_tmp
1474
+ end
1475
+ end
1437
1476
  end
1438
1477
  end
1439
1478
 
@@ -2891,7 +2930,12 @@ module TencentCloud
2891
2930
 
2892
2931
  # DescribeTLogInfo返回参数结构体
2893
2932
  class DescribeTLogInfoResponse < TencentCloud::Common::AbstractModel
2894
- # @param Data:
2933
+ # @param Data: "NetworkNum":网络扫描探测
2934
+ # "HandleNum": 待处理事件
2935
+ # "BanNum":
2936
+ # "VulNum": 漏洞利用
2937
+ # "OutNum": 失陷主机
2938
+ # "BruteForceNum": 0
2895
2939
  # @type Data: :class:`Tencentcloud::Cfw.v20190904.models.TLogInfo`
2896
2940
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2897
2941
  # @type RequestId: String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cfw
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.543
4
+ version: 3.0.545
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-04 00:00:00.000000000 Z
11
+ date: 2023-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common