tencentcloud-sdk-waf 3.0.409 → 3.0.411

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 +39 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6033fd97d87ade231988eee566acdf8843131758
4
- data.tar.gz: f2e97997b138c3d9fd932d7fe0a978ac712a862d
3
+ metadata.gz: 648c3b32fc4efb828273fb5582f3ef40ff1777b7
4
+ data.tar.gz: ae36d92eb6b28e62168f0b35c0b27ae2a942680f
5
5
  SHA512:
6
- metadata.gz: 4b4b6819339a817d790dbec01dbfd83a39f90cd2dd29eb2d6b9fc4e08de973a26e4b36a13f0f4faccd10b0aea2f5799b82dcf763885ba5cfeec7349345deabdb
7
- data.tar.gz: 6e475ff687fabbbdcfdac3146536a9aef51a2933c6e43832a97cfcc42dd0c00fd03794f92fa94edddd4c4b76e2e70fbd0eb9a72c1fa5585c9bc8bfeebf827408
6
+ metadata.gz: 04a38c9ada8abef51fb2fee507dc73cd0c62aab9732b147799e5d903fbd26ae1d3521868dde69fb2ebf4e1d2821ba54a1259753f80f43454b8d9e1adeca5630f
7
+ data.tar.gz: 22f2ca00c33d104a475a445f196c8765a4ea7de85264c4f3a56d346137bea27cc9a166e27525e8038e5f332c289e18b832af7934be06080dbd1c729b1f66f840
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.409
1
+ 3.0.411
@@ -484,10 +484,18 @@ module TencentCloud
484
484
  # @type Anycast: Integer
485
485
  # @param Weights: src权重
486
486
  # @type Weights: Array
487
-
488
- attr_accessor :Domain, :CertType, :IsCdn, :UpstreamType, :IsWebsocket, :LoadBalance, :Cert, :PrivateKey, :SSLId, :ResourceId, :UpstreamScheme, :HttpsUpstreamPort, :IsGray, :GrayAreas, :UpstreamDomain, :SrcList, :IsHttp2, :HttpsRewrite, :Ports, :Edition, :IsKeepAlive, :InstanceID, :Anycast, :Weights
489
-
490
- def initialize(domain=nil, certtype=nil, iscdn=nil, upstreamtype=nil, iswebsocket=nil, loadbalance=nil, cert=nil, privatekey=nil, sslid=nil, resourceid=nil, upstreamscheme=nil, httpsupstreamport=nil, isgray=nil, grayareas=nil, upstreamdomain=nil, srclist=nil, ishttp2=nil, httpsrewrite=nil, ports=nil, edition=nil, iskeepalive=nil, instanceid=nil, anycast=nil, weights=nil)
487
+ # @param ActiveCheck: 是否开启主动健康检测,1表示开启,0表示不开启
488
+ # @type ActiveCheck: Integer
489
+ # @param TLSVersion: TLS版本信息
490
+ # @type TLSVersion: Integer
491
+ # @param Ciphers: 加密套件信息
492
+ # @type Ciphers: Array
493
+ # @param CipherTemplate: 0:不支持选择:默认模版 1:通用型模版 2:安全型模版 3:自定义模版
494
+ # @type CipherTemplate: Integer
495
+
496
+ attr_accessor :Domain, :CertType, :IsCdn, :UpstreamType, :IsWebsocket, :LoadBalance, :Cert, :PrivateKey, :SSLId, :ResourceId, :UpstreamScheme, :HttpsUpstreamPort, :IsGray, :GrayAreas, :UpstreamDomain, :SrcList, :IsHttp2, :HttpsRewrite, :Ports, :Edition, :IsKeepAlive, :InstanceID, :Anycast, :Weights, :ActiveCheck, :TLSVersion, :Ciphers, :CipherTemplate
497
+
498
+ def initialize(domain=nil, certtype=nil, iscdn=nil, upstreamtype=nil, iswebsocket=nil, loadbalance=nil, cert=nil, privatekey=nil, sslid=nil, resourceid=nil, upstreamscheme=nil, httpsupstreamport=nil, isgray=nil, grayareas=nil, upstreamdomain=nil, srclist=nil, ishttp2=nil, httpsrewrite=nil, ports=nil, edition=nil, iskeepalive=nil, instanceid=nil, anycast=nil, weights=nil, activecheck=nil, tlsversion=nil, ciphers=nil, ciphertemplate=nil)
491
499
  @Domain = domain
492
500
  @CertType = certtype
493
501
  @IsCdn = iscdn
@@ -512,6 +520,10 @@ module TencentCloud
512
520
  @InstanceID = instanceid
513
521
  @Anycast = anycast
514
522
  @Weights = weights
523
+ @ActiveCheck = activecheck
524
+ @TLSVersion = tlsversion
525
+ @Ciphers = ciphers
526
+ @CipherTemplate = ciphertemplate
515
527
  end
516
528
 
517
529
  def deserialize(params)
@@ -546,6 +558,10 @@ module TencentCloud
546
558
  @InstanceID = params['InstanceID']
547
559
  @Anycast = params['Anycast']
548
560
  @Weights = params['Weights']
561
+ @ActiveCheck = params['ActiveCheck']
562
+ @TLSVersion = params['TLSVersion']
563
+ @Ciphers = params['Ciphers']
564
+ @CipherTemplate = params['CipherTemplate']
549
565
  end
550
566
  end
551
567
 
@@ -971,19 +987,23 @@ module TencentCloud
971
987
  # @type Items: Array
972
988
  # @param DeleteAll: 删除对应的域名下的所有黑/白IP名额单
973
989
  # @type DeleteAll: Boolean
990
+ # @param SourceType: 是否为多域名黑白名单
991
+ # @type SourceType: String
974
992
 
975
- attr_accessor :Domain, :Items, :DeleteAll
993
+ attr_accessor :Domain, :Items, :DeleteAll, :SourceType
976
994
 
977
- def initialize(domain=nil, items=nil, deleteall=nil)
995
+ def initialize(domain=nil, items=nil, deleteall=nil, sourcetype=nil)
978
996
  @Domain = domain
979
997
  @Items = items
980
998
  @DeleteAll = deleteall
999
+ @SourceType = sourcetype
981
1000
  end
982
1001
 
983
1002
  def deserialize(params)
984
1003
  @Domain = params['Domain']
985
1004
  @Items = params['Items']
986
1005
  @DeleteAll = params['DeleteAll']
1006
+ @SourceType = params['SourceType']
987
1007
  end
988
1008
  end
989
1009
 
@@ -2206,10 +2226,13 @@ module TencentCloud
2206
2226
  # @param BotQPS: bot的qps详情
2207
2227
  # 注意:此字段可能返回 null,表示取不到有效值。
2208
2228
  # @type BotQPS: :class:`Tencentcloud::Waf.v20180125.models.BotQPS`
2229
+ # @param ElasticBilling: qps弹性计费上限
2230
+ # 注意:此字段可能返回 null,表示取不到有效值。
2231
+ # @type ElasticBilling: Integer
2209
2232
 
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
2233
+ 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
2211
2234
 
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)
2235
+ 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)
2213
2236
  @InstanceId = instanceid
2214
2237
  @InstanceName = instancename
2215
2238
  @ResourceIds = resourceids
@@ -2232,6 +2255,7 @@ module TencentCloud
2232
2255
  @FraudPkg = fraudpkg
2233
2256
  @BotPkg = botpkg
2234
2257
  @BotQPS = botqps
2258
+ @ElasticBilling = elasticbilling
2235
2259
  end
2236
2260
 
2237
2261
  def deserialize(params)
@@ -2272,6 +2296,7 @@ module TencentCloud
2272
2296
  @BotQPS = BotQPS.new
2273
2297
  @BotQPS.deserialize(params['BotQPS'])
2274
2298
  end
2299
+ @ElasticBilling = params['ElasticBilling']
2275
2300
  end
2276
2301
  end
2277
2302
 
@@ -2993,19 +3018,23 @@ module TencentCloud
2993
3018
  # @type Items: Array
2994
3019
  # @param Edition: clb-waf或者sparta-waf
2995
3020
  # @type Edition: String
3021
+ # @param SourceType: 是否为多域名黑白名单
3022
+ # @type SourceType: String
2996
3023
 
2997
- attr_accessor :Domain, :Items, :Edition
3024
+ attr_accessor :Domain, :Items, :Edition, :SourceType
2998
3025
 
2999
- def initialize(domain=nil, items=nil, edition=nil)
3026
+ def initialize(domain=nil, items=nil, edition=nil, sourcetype=nil)
3000
3027
  @Domain = domain
3001
3028
  @Items = items
3002
3029
  @Edition = edition
3030
+ @SourceType = sourcetype
3003
3031
  end
3004
3032
 
3005
3033
  def deserialize(params)
3006
3034
  @Domain = params['Domain']
3007
3035
  @Items = params['Items']
3008
3036
  @Edition = params['Edition']
3037
+ @SourceType = params['SourceType']
3009
3038
  end
3010
3039
  end
3011
3040
 
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.409
4
+ version: 3.0.411
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-14 00:00:00.000000000 Z
11
+ date: 2022-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common