tencentcloud-sdk-waf 3.0.1147 → 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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180125/models.rb +12 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30a2cc4db7a616cb8b39856cee10417e5c905909
|
4
|
+
data.tar.gz: 412348e278753f18030a7816c99014ca730cdd6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21fee4a5c1acce2894304e5e8d28082b223c9e3bdd838d5cf62c1c7f6433d49a96895a801a11f34951a992cd1d732073b87377c93f75f117c407f68b0f776cda
|
7
|
+
data.tar.gz: c349ea1f3740e9efe520f57c1423ea8133ec7f929eaa0d3cbebb9eb2c8b1643bb42a3847a14b7d5d4ae32a26b56463427c7db2729b18f1987eca8c4b84d5e5e1
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1149
|
data/lib/v20180125/models.rb
CHANGED
@@ -7565,12 +7565,14 @@ module TencentCloud
|
|
7565
7565
|
# @type ApiProtection: Integer
|
7566
7566
|
# @param RateLimit: 限流模块开关
|
7567
7567
|
# @type RateLimit: Integer
|
7568
|
+
# @param GzipAnalysis: gzip 开关
|
7569
|
+
# @type GzipAnalysis: Integer
|
7568
7570
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7569
7571
|
# @type RequestId: String
|
7570
7572
|
|
7571
|
-
attr_accessor :WebSecurity, :AccessControl, :CcProtection, :AntiTamper, :AntiLeakage, :ApiProtection, :RateLimit, :RequestId
|
7573
|
+
attr_accessor :WebSecurity, :AccessControl, :CcProtection, :AntiTamper, :AntiLeakage, :ApiProtection, :RateLimit, :GzipAnalysis, :RequestId
|
7572
7574
|
|
7573
|
-
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)
|
7574
7576
|
@WebSecurity = websecurity
|
7575
7577
|
@AccessControl = accesscontrol
|
7576
7578
|
@CcProtection = ccprotection
|
@@ -7578,6 +7580,7 @@ module TencentCloud
|
|
7578
7580
|
@AntiLeakage = antileakage
|
7579
7581
|
@ApiProtection = apiprotection
|
7580
7582
|
@RateLimit = ratelimit
|
7583
|
+
@GzipAnalysis = gzipanalysis
|
7581
7584
|
@RequestId = requestid
|
7582
7585
|
end
|
7583
7586
|
|
@@ -7589,6 +7592,7 @@ module TencentCloud
|
|
7589
7592
|
@AntiLeakage = params['AntiLeakage']
|
7590
7593
|
@ApiProtection = params['ApiProtection']
|
7591
7594
|
@RateLimit = params['RateLimit']
|
7595
|
+
@GzipAnalysis = params['GzipAnalysis']
|
7592
7596
|
@RequestId = params['RequestId']
|
7593
7597
|
end
|
7594
7598
|
end
|
@@ -14280,10 +14284,12 @@ module TencentCloud
|
|
14280
14284
|
# @type AntiLeakage: Integer
|
14281
14285
|
# @param RateLimit: 限流模块开关,0或1
|
14282
14286
|
# @type RateLimit: Integer
|
14287
|
+
# @param GzipAnalysis: gzip 开关
|
14288
|
+
# @type GzipAnalysis: Integer
|
14283
14289
|
|
14284
|
-
attr_accessor :Domain, :WebSecurity, :AccessControl, :CcProtection, :ApiProtection, :AntiTamper, :AntiLeakage, :RateLimit
|
14290
|
+
attr_accessor :Domain, :WebSecurity, :AccessControl, :CcProtection, :ApiProtection, :AntiTamper, :AntiLeakage, :RateLimit, :GzipAnalysis
|
14285
14291
|
|
14286
|
-
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)
|
14287
14293
|
@Domain = domain
|
14288
14294
|
@WebSecurity = websecurity
|
14289
14295
|
@AccessControl = accesscontrol
|
@@ -14292,6 +14298,7 @@ module TencentCloud
|
|
14292
14298
|
@AntiTamper = antitamper
|
14293
14299
|
@AntiLeakage = antileakage
|
14294
14300
|
@RateLimit = ratelimit
|
14301
|
+
@GzipAnalysis = gzipanalysis
|
14295
14302
|
end
|
14296
14303
|
|
14297
14304
|
def deserialize(params)
|
@@ -14303,6 +14310,7 @@ module TencentCloud
|
|
14303
14310
|
@AntiTamper = params['AntiTamper']
|
14304
14311
|
@AntiLeakage = params['AntiLeakage']
|
14305
14312
|
@RateLimit = params['RateLimit']
|
14313
|
+
@GzipAnalysis = params['GzipAnalysis']
|
14306
14314
|
end
|
14307
14315
|
end
|
14308
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.
|
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-
|
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
|