tencentcloud-sdk-waf 3.0.1146 → 3.0.1149

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 +16 -18
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f7acde5991f377f9bb152c4dd40d22a392ff6a0
4
- data.tar.gz: e70bdafcf44f9fbb70fd0eabc77c38f2bafb78de
3
+ metadata.gz: 30a2cc4db7a616cb8b39856cee10417e5c905909
4
+ data.tar.gz: 412348e278753f18030a7816c99014ca730cdd6e
5
5
  SHA512:
6
- metadata.gz: d43765e5e426a0cb438b3be8beb3a15ae76b87ddfcab165ef347acc2f4daccea536ccb989012dca76e9e83f0bce7bfcb0c73818f607a8eac3ef25f80da65ddb0
7
- data.tar.gz: c167656ded34d4851c89774cb39047ee8a0f494eb147664129129ac385688072d353964a96ec53761c618f00ac0789b024b6edd23008daecd40cfbb99b6b64c9
6
+ metadata.gz: 21fee4a5c1acce2894304e5e8d28082b223c9e3bdd838d5cf62c1c7f6433d49a96895a801a11f34951a992cd1d732073b87377c93f75f117c407f68b0f776cda
7
+ data.tar.gz: c349ea1f3740e9efe520f57c1423ea8133ec7f929eaa0d3cbebb9eb2c8b1643bb42a3847a14b7d5d4ae32a26b56463427c7db2729b18f1987eca8c4b84d5e5e1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1146
1
+ 3.0.1149
@@ -858,23 +858,13 @@ module TencentCloud
858
858
  # @type IsKeepAlive: String
859
859
  # @param InstanceID: 必填项,域名所属实例id
860
860
  # @type InstanceID: String
861
- # @param HttpsRewrite: 必填项,是否开启HTTP强制跳转到HTTPS。
862
- # 0:不强制跳转
863
- # 1:开启强制跳转
861
+ # @param HttpsRewrite: 是否开启HTTP强制跳转到HTTPS。0:不强制跳转1:开启强制跳转
864
862
  # @type HttpsRewrite: Integer
865
- # @param IsHttp2: 必填项,是否开启HTTP2,需要开启HTTPS协议支持。
866
- # 0:关闭
867
- # 1:开启
863
+ # @param IsHttp2: 是否开启HTTP2,需要开启HTTPS协议支持。0:关闭1:开启
868
864
  # @type IsHttp2: Integer
869
- # @param ActiveCheck: 必填项,是否开启主动健康检测。
870
- # 0:不开启
871
- # 1:开启
865
+ # @param ActiveCheck: 是否开启主动健康检测。0:不开启1:开启
872
866
  # @type ActiveCheck: Integer
873
- # @param CipherTemplate: 必填项,加密套件模板。
874
- # 0:不支持选择,使用默认模板
875
- # 1:通用型模板
876
- # 2:安全型模板
877
- # 3:自定义模板
867
+ # @param CipherTemplate: 加密套件模板。0:不支持选择,使用默认模板 1:通用型模板 2:安全型模板3:自定义模板
878
868
  # @type CipherTemplate: Integer
879
869
  # @param Cert: CertType为1时,需要填充此参数,表示自有证书的证书链
880
870
  # @type Cert: String
@@ -7575,12 +7565,14 @@ module TencentCloud
7575
7565
  # @type ApiProtection: Integer
7576
7566
  # @param RateLimit: 限流模块开关
7577
7567
  # @type RateLimit: Integer
7568
+ # @param GzipAnalysis: gzip 开关
7569
+ # @type GzipAnalysis: Integer
7578
7570
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7579
7571
  # @type RequestId: String
7580
7572
 
7581
- attr_accessor :WebSecurity, :AccessControl, :CcProtection, :AntiTamper, :AntiLeakage, :ApiProtection, :RateLimit, :RequestId
7573
+ attr_accessor :WebSecurity, :AccessControl, :CcProtection, :AntiTamper, :AntiLeakage, :ApiProtection, :RateLimit, :GzipAnalysis, :RequestId
7582
7574
 
7583
- def initialize(websecurity=nil, accesscontrol=nil, ccprotection=nil, antitamper=nil, antileakage=nil, apiprotection=nil, ratelimit=nil, requestid=nil)
7575
+ def initialize(websecurity=nil, accesscontrol=nil, ccprotection=nil, antitamper=nil, antileakage=nil, apiprotection=nil, ratelimit=nil, gzipanalysis=nil, requestid=nil)
7584
7576
  @WebSecurity = websecurity
7585
7577
  @AccessControl = accesscontrol
7586
7578
  @CcProtection = ccprotection
@@ -7588,6 +7580,7 @@ module TencentCloud
7588
7580
  @AntiLeakage = antileakage
7589
7581
  @ApiProtection = apiprotection
7590
7582
  @RateLimit = ratelimit
7583
+ @GzipAnalysis = gzipanalysis
7591
7584
  @RequestId = requestid
7592
7585
  end
7593
7586
 
@@ -7599,6 +7592,7 @@ module TencentCloud
7599
7592
  @AntiLeakage = params['AntiLeakage']
7600
7593
  @ApiProtection = params['ApiProtection']
7601
7594
  @RateLimit = params['RateLimit']
7595
+ @GzipAnalysis = params['GzipAnalysis']
7602
7596
  @RequestId = params['RequestId']
7603
7597
  end
7604
7598
  end
@@ -14290,10 +14284,12 @@ module TencentCloud
14290
14284
  # @type AntiLeakage: Integer
14291
14285
  # @param RateLimit: 限流模块开关,0或1
14292
14286
  # @type RateLimit: Integer
14287
+ # @param GzipAnalysis: gzip 开关
14288
+ # @type GzipAnalysis: Integer
14293
14289
 
14294
- attr_accessor :Domain, :WebSecurity, :AccessControl, :CcProtection, :ApiProtection, :AntiTamper, :AntiLeakage, :RateLimit
14290
+ attr_accessor :Domain, :WebSecurity, :AccessControl, :CcProtection, :ApiProtection, :AntiTamper, :AntiLeakage, :RateLimit, :GzipAnalysis
14295
14291
 
14296
- def initialize(domain=nil, websecurity=nil, accesscontrol=nil, ccprotection=nil, apiprotection=nil, antitamper=nil, antileakage=nil, ratelimit=nil)
14292
+ def initialize(domain=nil, websecurity=nil, accesscontrol=nil, ccprotection=nil, apiprotection=nil, antitamper=nil, antileakage=nil, ratelimit=nil, gzipanalysis=nil)
14297
14293
  @Domain = domain
14298
14294
  @WebSecurity = websecurity
14299
14295
  @AccessControl = accesscontrol
@@ -14302,6 +14298,7 @@ module TencentCloud
14302
14298
  @AntiTamper = antitamper
14303
14299
  @AntiLeakage = antileakage
14304
14300
  @RateLimit = ratelimit
14301
+ @GzipAnalysis = gzipanalysis
14305
14302
  end
14306
14303
 
14307
14304
  def deserialize(params)
@@ -14313,6 +14310,7 @@ module TencentCloud
14313
14310
  @AntiTamper = params['AntiTamper']
14314
14311
  @AntiLeakage = params['AntiLeakage']
14315
14312
  @RateLimit = params['RateLimit']
14313
+ @GzipAnalysis = params['GzipAnalysis']
14316
14314
  end
14317
14315
  end
14318
14316
 
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.1146
4
+ version: 3.0.1149
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-24 00:00:00.000000000 Z
11
+ date: 2025-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common