tencentcloud-sdk-waf 3.0.557 → 3.0.558

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/v20180125/models.rb +46 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4a903549fd671ff1186c1f3d3d8ebc4b5d48b13c
4
- data.tar.gz: f801029796a4a7252c2dc0ec93a03b94333ed4ac
3
+ metadata.gz: 219167949e93b6136d214bb283b0512656360198
4
+ data.tar.gz: e86078db1efd5726346349739a8428dcd627a782
5
5
  SHA512:
6
- metadata.gz: 9eafa7379f5b290fcf3c8b313e130a94873ddb4cc7d837c51d3a41f2f7524badf6cef6c5be6328bfa8b8ed7c31e49b5e7e465a44822b31c81699a80a207f997c
7
- data.tar.gz: f0fd4291a9ed6b706c07bb146afe71890f29cb8a3e78285564dfb9c76ab0d9de0602eeeb3eecc84b4896a08c3cddd1f0a3453125aacd17fcbd65e49f5b840abf
6
+ metadata.gz: e1b424a0e38fad5485fcf705069f7dc62d27c408a5b8a260e7e0291be2ae91fa75d29017a6164facece9d574cd898a0f2001732899cde9637afcf59acfc4fa2c
7
+ data.tar.gz: d48283a3b39d6a30fdff2d18184a60b0280969aaa15b0c538b43562d51ea802112d2930a468a0f1edcea7044b563631dce2563b2fe9ce2a1fd88f2758c9f6b69
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.557
1
+ 3.0.558
@@ -305,7 +305,7 @@ module TencentCloud
305
305
  # @type Name: String
306
306
  # @param SortId: 优先级
307
307
  # @type SortId: String
308
- # @param ExpireTime: 过期时间
308
+ # @param ExpireTime: 过期时间,单位为秒级时间戳,例如1677254399表示过期时间为2023-02-24 23:59:59. 0表示永不过期
309
309
  # @type ExpireTime: String
310
310
  # @param Strategies: 策略详情
311
311
  # @type Strategies: Array
@@ -1479,17 +1479,20 @@ module TencentCloud
1479
1479
  # @type CCCount: Integer
1480
1480
  # @param BotCount: Bot攻击总数
1481
1481
  # @type BotCount: Integer
1482
+ # @param ApiAssetsCount: api资产总数
1483
+ # @type ApiAssetsCount: Integer
1482
1484
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1483
1485
  # @type RequestId: String
1484
1486
 
1485
- attr_accessor :AccessCount, :AttackCount, :ACLCount, :CCCount, :BotCount, :RequestId
1487
+ attr_accessor :AccessCount, :AttackCount, :ACLCount, :CCCount, :BotCount, :ApiAssetsCount, :RequestId
1486
1488
 
1487
- def initialize(accesscount=nil, attackcount=nil, aclcount=nil, cccount=nil, botcount=nil, requestid=nil)
1489
+ def initialize(accesscount=nil, attackcount=nil, aclcount=nil, cccount=nil, botcount=nil, apiassetscount=nil, requestid=nil)
1488
1490
  @AccessCount = accesscount
1489
1491
  @AttackCount = attackcount
1490
1492
  @ACLCount = aclcount
1491
1493
  @CCCount = cccount
1492
1494
  @BotCount = botcount
1495
+ @ApiAssetsCount = apiassetscount
1493
1496
  @RequestId = requestid
1494
1497
  end
1495
1498
 
@@ -1499,6 +1502,7 @@ module TencentCloud
1499
1502
  @ACLCount = params['ACLCount']
1500
1503
  @CCCount = params['CCCount']
1501
1504
  @BotCount = params['BotCount']
1505
+ @ApiAssetsCount = params['ApiAssetsCount']
1502
1506
  @RequestId = params['RequestId']
1503
1507
  end
1504
1508
  end
@@ -1608,10 +1612,13 @@ module TencentCloud
1608
1612
  # @type Status: String
1609
1613
  # @param Strategies: 策略详情
1610
1614
  # @type Strategies: Array
1615
+ # @param EventId: 事件id
1616
+ # 注意:此字段可能返回 null,表示取不到有效值。
1617
+ # @type EventId: String
1611
1618
 
1612
- attr_accessor :ActionType, :Bypass, :CreateTime, :ExpireTime, :Name, :Redirect, :RuleId, :SortId, :Status, :Strategies
1619
+ attr_accessor :ActionType, :Bypass, :CreateTime, :ExpireTime, :Name, :Redirect, :RuleId, :SortId, :Status, :Strategies, :EventId
1613
1620
 
1614
- def initialize(actiontype=nil, bypass=nil, createtime=nil, expiretime=nil, name=nil, redirect=nil, ruleid=nil, sortid=nil, status=nil, strategies=nil)
1621
+ def initialize(actiontype=nil, bypass=nil, createtime=nil, expiretime=nil, name=nil, redirect=nil, ruleid=nil, sortid=nil, status=nil, strategies=nil, eventid=nil)
1615
1622
  @ActionType = actiontype
1616
1623
  @Bypass = bypass
1617
1624
  @CreateTime = createtime
@@ -1622,6 +1629,7 @@ module TencentCloud
1622
1629
  @SortId = sortid
1623
1630
  @Status = status
1624
1631
  @Strategies = strategies
1632
+ @EventId = eventid
1625
1633
  end
1626
1634
 
1627
1635
  def deserialize(params)
@@ -1642,6 +1650,7 @@ module TencentCloud
1642
1650
  @Strategies << strategy_tmp
1643
1651
  end
1644
1652
  end
1653
+ @EventId = params['EventId']
1645
1654
  end
1646
1655
  end
1647
1656
 
@@ -3069,7 +3078,7 @@ module TencentCloud
3069
3078
  end
3070
3079
  end
3071
3080
 
3072
- # 实例入参过滤器
3081
+ # 过滤数组
3073
3082
  class FiltersItemNew < TencentCloud::Common::AbstractModel
3074
3083
  # @param Name: 字段名
3075
3084
  # @type Name: String
@@ -3278,7 +3287,7 @@ module TencentCloud
3278
3287
  class InstanceInfo < TencentCloud::Common::AbstractModel
3279
3288
  # @param InstanceId: id
3280
3289
  # @type InstanceId: String
3281
- # @param InstanceName: name
3290
+ # @param InstanceName: Name
3282
3291
  # @type InstanceName: String
3283
3292
  # @param ResourceIds: 资源id
3284
3293
  # @type ResourceIds: String
@@ -3332,10 +3341,24 @@ module TencentCloud
3332
3341
  # @param MaxBandwidth: 带宽峰值
3333
3342
  # 注意:此字段可能返回 null,表示取不到有效值。
3334
3343
  # @type MaxBandwidth: Integer
3344
+ # @param APISecurity: api安全是否购买
3345
+ # @type APISecurity: Integer
3346
+ # @param QpsStandard: 购买的qps规格
3347
+ # 注意:此字段可能返回 null,表示取不到有效值。
3348
+ # @type QpsStandard: Integer
3349
+ # @param BandwidthStandard: 购买的带宽规格
3350
+ # 注意:此字段可能返回 null,表示取不到有效值。
3351
+ # @type BandwidthStandard: Integer
3352
+ # @param Status: 实例状态
3353
+ # 注意:此字段可能返回 null,表示取不到有效值。
3354
+ # @type Status: Integer
3355
+ # @param SandboxQps: 实例沙箱值
3356
+ # 注意:此字段可能返回 null,表示取不到有效值。
3357
+ # @type SandboxQps: Integer
3335
3358
 
3336
- attr_accessor :InstanceId, :InstanceName, :ResourceIds, :Region, :PayMode, :RenewFlag, :Mode, :Level, :ValidTime, :BeginTime, :DomainCount, :SubDomainLimit, :MainDomainCount, :MainDomainLimit, :MaxQPS, :QPS, :DomainPkg, :AppId, :Edition, :FraudPkg, :BotPkg, :BotQPS, :ElasticBilling, :AttackLogPost, :MaxBandwidth
3359
+ attr_accessor :InstanceId, :InstanceName, :ResourceIds, :Region, :PayMode, :RenewFlag, :Mode, :Level, :ValidTime, :BeginTime, :DomainCount, :SubDomainLimit, :MainDomainCount, :MainDomainLimit, :MaxQPS, :QPS, :DomainPkg, :AppId, :Edition, :FraudPkg, :BotPkg, :BotQPS, :ElasticBilling, :AttackLogPost, :MaxBandwidth, :APISecurity, :QpsStandard, :BandwidthStandard, :Status, :SandboxQps
3337
3360
 
3338
- def initialize(instanceid=nil, instancename=nil, resourceids=nil, region=nil, paymode=nil, renewflag=nil, mode=nil, level=nil, validtime=nil, begintime=nil, domaincount=nil, subdomainlimit=nil, maindomaincount=nil, maindomainlimit=nil, maxqps=nil, qps=nil, domainpkg=nil, appid=nil, edition=nil, fraudpkg=nil, botpkg=nil, botqps=nil, elasticbilling=nil, attacklogpost=nil, maxbandwidth=nil)
3361
+ def initialize(instanceid=nil, instancename=nil, resourceids=nil, region=nil, paymode=nil, renewflag=nil, mode=nil, level=nil, validtime=nil, begintime=nil, domaincount=nil, subdomainlimit=nil, maindomaincount=nil, maindomainlimit=nil, maxqps=nil, qps=nil, domainpkg=nil, appid=nil, edition=nil, fraudpkg=nil, botpkg=nil, botqps=nil, elasticbilling=nil, attacklogpost=nil, maxbandwidth=nil, apisecurity=nil, qpsstandard=nil, bandwidthstandard=nil, status=nil, sandboxqps=nil)
3339
3362
  @InstanceId = instanceid
3340
3363
  @InstanceName = instancename
3341
3364
  @ResourceIds = resourceids
@@ -3361,6 +3384,11 @@ module TencentCloud
3361
3384
  @ElasticBilling = elasticbilling
3362
3385
  @AttackLogPost = attacklogpost
3363
3386
  @MaxBandwidth = maxbandwidth
3387
+ @APISecurity = apisecurity
3388
+ @QpsStandard = qpsstandard
3389
+ @BandwidthStandard = bandwidthstandard
3390
+ @Status = status
3391
+ @SandboxQps = sandboxqps
3364
3392
  end
3365
3393
 
3366
3394
  def deserialize(params)
@@ -3404,6 +3432,11 @@ module TencentCloud
3404
3432
  @ElasticBilling = params['ElasticBilling']
3405
3433
  @AttackLogPost = params['AttackLogPost']
3406
3434
  @MaxBandwidth = params['MaxBandwidth']
3435
+ @APISecurity = params['APISecurity']
3436
+ @QpsStandard = params['QpsStandard']
3437
+ @BandwidthStandard = params['BandwidthStandard']
3438
+ @Status = params['Status']
3439
+ @SandboxQps = params['SandboxQps']
3407
3440
  end
3408
3441
  end
3409
3442
 
@@ -4513,12 +4546,16 @@ module TencentCloud
4513
4546
  # 自定义规则的匹配条件结构体
4514
4547
  class Strategy < TencentCloud::Common::AbstractModel
4515
4548
  # @param Field: 匹配字段
4549
+ # 注意:此字段可能返回 null,表示取不到有效值。
4516
4550
  # @type Field: String
4517
4551
  # @param CompareFunc: 逻辑符号
4552
+ # 注意:此字段可能返回 null,表示取不到有效值。
4518
4553
  # @type CompareFunc: String
4519
4554
  # @param Content: 匹配内容
4555
+ # 注意:此字段可能返回 null,表示取不到有效值。
4520
4556
  # @type Content: String
4521
4557
  # @param Arg: 匹配参数
4558
+ # 注意:此字段可能返回 null,表示取不到有效值。
4522
4559
  # @type Arg: String
4523
4560
 
4524
4561
  attr_accessor :Field, :CompareFunc, :Content, :Arg
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-waf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.557
4
+ version: 3.0.558
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-21 00:00:00.000000000 Z
11
+ date: 2023-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common