tencentcloud-sdk-waf 3.0.402 → 3.0.403

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 +49 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6d1390374650731b7966c41bf50d1c9bf3d85c26
4
- data.tar.gz: 3473a6db8c5508a7be0852cbd4ea720ff4762ae8
3
+ metadata.gz: f41a0fb19b759c60db6a64628b1448a260e37d66
4
+ data.tar.gz: e0e928c1b6dec0eae81d432ccd005c4009177849
5
5
  SHA512:
6
- metadata.gz: 0c1e9b30a27c344a3b2bdff26c3d72e1b52432fb7297857d87cfc53b89aaa54c14c1082ab7cc4352274138336a51bd96cbf6b59e25d5c4988af51278445962b4
7
- data.tar.gz: 1db895136f11cd9d1b8d2f2f489563c3a0d412461f3b3935c999dad48568fd3d43f9d10dbd804e0e8a3cfe2bb95b89ab1a39e0dc75a706ab6ccb79df3bf61d5c
6
+ metadata.gz: d15d41bae47ccb40884ed08e954d56608bda4a21e396b2235fc460a2017addbddd4c28deb09bda962f76bff5fd0a38ad8cc7ea73e0ca7604a22a86e05ed1b26c
7
+ data.tar.gz: e51d57d6c42b67327dcda408d8f1bfa6ed94928f7a43e065e0a510997fcbe886b58537eed163fe84ed0ab2a2d7d2fd402b86b6601addae9ee247a8071c271474
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.402
1
+ 3.0.403
@@ -624,10 +624,13 @@ module TencentCloud
624
624
  # @param UsedNum: 使用数量
625
625
  # 注意:此字段可能返回 null,表示取不到有效值。
626
626
  # @type UsedNum: Integer
627
+ # @param Type: 子产品code
628
+ # 注意:此字段可能返回 null,表示取不到有效值。
629
+ # @type Type: String
627
630
 
628
- attr_accessor :ResourceIds, :Status, :Region, :BeginTime, :EndTime, :InquireNum, :UsedNum
631
+ attr_accessor :ResourceIds, :Status, :Region, :BeginTime, :EndTime, :InquireNum, :UsedNum, :Type
629
632
 
630
- def initialize(resourceids=nil, status=nil, region=nil, begintime=nil, endtime=nil, inquirenum=nil, usednum=nil)
633
+ def initialize(resourceids=nil, status=nil, region=nil, begintime=nil, endtime=nil, inquirenum=nil, usednum=nil, type=nil)
631
634
  @ResourceIds = resourceids
632
635
  @Status = status
633
636
  @Region = region
@@ -635,6 +638,7 @@ module TencentCloud
635
638
  @EndTime = endtime
636
639
  @InquireNum = inquirenum
637
640
  @UsedNum = usednum
641
+ @Type = type
638
642
  end
639
643
 
640
644
  def deserialize(params)
@@ -645,6 +649,39 @@ module TencentCloud
645
649
  @EndTime = params['EndTime']
646
650
  @InquireNum = params['InquireNum']
647
651
  @UsedNum = params['UsedNum']
652
+ @Type = params['Type']
653
+ end
654
+ end
655
+
656
+ # bot的qps详情
657
+ class BotQPS < TencentCloud::Common::AbstractModel
658
+ # @param ResourceIds: 资源id
659
+ # @type ResourceIds: String
660
+ # @param ValidTime: 有效时间
661
+ # @type ValidTime: String
662
+ # @param Count: 资源数量
663
+ # @type Count: Integer
664
+ # @param Region: 资源所在地区
665
+ # @type Region: String
666
+ # @param MaxBotQPS: 使用qps的最大值
667
+ # @type MaxBotQPS: Integer
668
+
669
+ attr_accessor :ResourceIds, :ValidTime, :Count, :Region, :MaxBotQPS
670
+
671
+ def initialize(resourceids=nil, validtime=nil, count=nil, region=nil, maxbotqps=nil)
672
+ @ResourceIds = resourceids
673
+ @ValidTime = validtime
674
+ @Count = count
675
+ @Region = region
676
+ @MaxBotQPS = maxbotqps
677
+ end
678
+
679
+ def deserialize(params)
680
+ @ResourceIds = params['ResourceIds']
681
+ @ValidTime = params['ValidTime']
682
+ @Count = params['Count']
683
+ @Region = params['Region']
684
+ @MaxBotQPS = params['MaxBotQPS']
648
685
  end
649
686
  end
650
687
 
@@ -2166,10 +2203,13 @@ module TencentCloud
2166
2203
  # @param BotPkg: Bot资源包
2167
2204
  # 注意:此字段可能返回 null,表示取不到有效值。
2168
2205
  # @type BotPkg: :class:`Tencentcloud::Waf.v20180125.models.BotPkg`
2206
+ # @param BotQPS: bot的qps详情
2207
+ # 注意:此字段可能返回 null,表示取不到有效值。
2208
+ # @type BotQPS: :class:`Tencentcloud::Waf.v20180125.models.BotQPS`
2169
2209
 
2170
- attr_accessor :InstanceId, :InstanceName, :ResourceIds, :Region, :PayMode, :RenewFlag, :Mode, :Level, :ValidTime, :BeginTime, :DomainCount, :SubDomainLimit, :MainDomainCount, :MainDomainLimit, :MaxQPS, :QPS, :DomainPkg, :AppId, :Edition, :FraudPkg, :BotPkg
2210
+ attr_accessor :InstanceId, :InstanceName, :ResourceIds, :Region, :PayMode, :RenewFlag, :Mode, :Level, :ValidTime, :BeginTime, :DomainCount, :SubDomainLimit, :MainDomainCount, :MainDomainLimit, :MaxQPS, :QPS, :DomainPkg, :AppId, :Edition, :FraudPkg, :BotPkg, :BotQPS
2171
2211
 
2172
- 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)
2212
+ 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)
2173
2213
  @InstanceId = instanceid
2174
2214
  @InstanceName = instancename
2175
2215
  @ResourceIds = resourceids
@@ -2191,6 +2231,7 @@ module TencentCloud
2191
2231
  @Edition = edition
2192
2232
  @FraudPkg = fraudpkg
2193
2233
  @BotPkg = botpkg
2234
+ @BotQPS = botqps
2194
2235
  end
2195
2236
 
2196
2237
  def deserialize(params)
@@ -2227,6 +2268,10 @@ module TencentCloud
2227
2268
  @BotPkg = BotPkg.new
2228
2269
  @BotPkg.deserialize(params['BotPkg'])
2229
2270
  end
2271
+ unless params['BotQPS'].nil?
2272
+ @BotQPS = BotQPS.new
2273
+ @BotQPS.deserialize(params['BotQPS'])
2274
+ end
2230
2275
  end
2231
2276
  end
2232
2277
 
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.402
4
+ version: 3.0.403
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-01 00:00:00.000000000 Z
11
+ date: 2022-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common