tencentcloud-sdk-waf 3.0.707 → 3.0.708

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e920eb3fe0bc94db20787130456ba7794eceb8b
4
- data.tar.gz: 1cbd52e1836c0b07d8470f5ad16b77343feeab2d
3
+ metadata.gz: 61b39bf552a3275e0ecd43547ee12651b793435b
4
+ data.tar.gz: e9fe3d2661c96ef96e2e2d8ffdc721c0a82ab696
5
5
  SHA512:
6
- metadata.gz: a5deb67a7ffd41b3c1aa61b5549ca35d9b1b0ffa41e82bb80bdf9afb184e6950673c13ba3873ca649d33c72e32ced72101120b774c667478243d2bd3d749f9d6
7
- data.tar.gz: 800e8943a3f3fcd33d7682c5c2aab67f8c3ad45f5ee0a860e1e9d3f886e4ed656b0c8079e8d6c3e03ab3671ecbc02cf22f9cf9bf28f764efa60c10a65f763d64
6
+ metadata.gz: 2d00a07bed95ec3320edc3c6cbec433ba0d461303a6df23dd5c808490be5f3fff7dccb23f34a157d9a7e731002500a1f7bff565036c620b182a5f13a0e0de970
7
+ data.tar.gz: c18f94a9bd72a15505d67fc7dc7e606721ef5a3f0e49662f170eba67505e1b18e1f796611f5f484d18613192563ca07951f09bbe60f8501fd6a446828ab116ce
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.707
1
+ 3.0.708
@@ -2126,7 +2126,7 @@ module TencentCloud
2126
2126
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2127
2127
  end
2128
2128
 
2129
- # 本接口用于修改访问日志保存期限及大字段是否存储
2129
+ # 本接口用于修改访问日志保存期限等字段信息
2130
2130
 
2131
2131
  # @param request: Request instance for ModifyAccessPeriod.
2132
2132
  # @type request: :class:`Tencentcloud::waf::V20180125::ModifyAccessPeriodRequest`
@@ -51,17 +51,24 @@ module TencentCloud
51
51
  # @type BTime: Integer
52
52
  # @param Count: 日志条数
53
53
  # @type Count: Integer
54
+ # @param BeginTime: 时间,单位ms
55
+ # @type BeginTime: Integer
54
56
 
55
- attr_accessor :BTime, :Count
57
+ attr_accessor :BTime, :Count, :BeginTime
58
+ extend Gem::Deprecate
59
+ deprecate :BTime, :none, 2023, 11
60
+ deprecate :BTime=, :none, 2023, 11
56
61
 
57
- def initialize(btime=nil, count=nil)
62
+ def initialize(btime=nil, count=nil, begintime=nil)
58
63
  @BTime = btime
59
64
  @Count = count
65
+ @BeginTime = begintime
60
66
  end
61
67
 
62
68
  def deserialize(params)
63
69
  @BTime = params['BTime']
64
70
  @Count = params['Count']
71
+ @BeginTime = params['BeginTime']
65
72
  end
66
73
  end
67
74
 
@@ -1721,10 +1728,16 @@ module TencentCloud
1721
1728
  # @type PostCLSStatus: Integer
1722
1729
  # @param PostCKafkaStatus: kafka投递开关
1723
1730
  # @type PostCKafkaStatus: Integer
1731
+ # @param Type: 对象类型:CLB:负载均衡器,TSE:云原生网关
1732
+ # 注意:此字段可能返回 null,表示取不到有效值。
1733
+ # @type Type: String
1734
+ # @param Region: 对象地域
1735
+ # 注意:此字段可能返回 null,表示取不到有效值。
1736
+ # @type Region: String
1724
1737
 
1725
- attr_accessor :ObjectId, :InstanceId, :InstanceName, :PreciseDomains, :Status, :ClsStatus, :VirtualDomain, :ObjectName, :PublicIp, :PrivateIp, :VpcName, :Vpc, :InstanceLevel, :PostCLSStatus, :PostCKafkaStatus
1738
+ attr_accessor :ObjectId, :InstanceId, :InstanceName, :PreciseDomains, :Status, :ClsStatus, :VirtualDomain, :ObjectName, :PublicIp, :PrivateIp, :VpcName, :Vpc, :InstanceLevel, :PostCLSStatus, :PostCKafkaStatus, :Type, :Region
1726
1739
 
1727
- def initialize(objectid=nil, instanceid=nil, instancename=nil, precisedomains=nil, status=nil, clsstatus=nil, virtualdomain=nil, objectname=nil, publicip=nil, privateip=nil, vpcname=nil, vpc=nil, instancelevel=nil, postclsstatus=nil, postckafkastatus=nil)
1740
+ def initialize(objectid=nil, instanceid=nil, instancename=nil, precisedomains=nil, status=nil, clsstatus=nil, virtualdomain=nil, objectname=nil, publicip=nil, privateip=nil, vpcname=nil, vpc=nil, instancelevel=nil, postclsstatus=nil, postckafkastatus=nil, type=nil, region=nil)
1728
1741
  @ObjectId = objectid
1729
1742
  @InstanceId = instanceid
1730
1743
  @InstanceName = instancename
@@ -1740,6 +1753,8 @@ module TencentCloud
1740
1753
  @InstanceLevel = instancelevel
1741
1754
  @PostCLSStatus = postclsstatus
1742
1755
  @PostCKafkaStatus = postckafkastatus
1756
+ @Type = type
1757
+ @Region = region
1743
1758
  end
1744
1759
 
1745
1760
  def deserialize(params)
@@ -1758,6 +1773,8 @@ module TencentCloud
1758
1773
  @InstanceLevel = params['InstanceLevel']
1759
1774
  @PostCLSStatus = params['PostCLSStatus']
1760
1775
  @PostCKafkaStatus = params['PostCKafkaStatus']
1776
+ @Type = params['Type']
1777
+ @Region = params['Region']
1761
1778
  end
1762
1779
  end
1763
1780
 
@@ -3831,10 +3848,19 @@ module TencentCloud
3831
3848
  # @param EventId: 事件id
3832
3849
  # 注意:此字段可能返回 null,表示取不到有效值。
3833
3850
  # @type EventId: String
3851
+ # @param ModifyTime: 修改时间
3852
+ # 注意:此字段可能返回 null,表示取不到有效值。
3853
+ # @type ModifyTime: String
3854
+ # @param ValidStatus: 生效状态
3855
+ # 注意:此字段可能返回 null,表示取不到有效值。
3856
+ # @type ValidStatus: Integer
3857
+ # @param Source: 来源
3858
+ # 注意:此字段可能返回 null,表示取不到有效值。
3859
+ # @type Source: String
3834
3860
 
3835
- attr_accessor :ActionType, :Bypass, :CreateTime, :ExpireTime, :Name, :Redirect, :RuleId, :SortId, :Status, :Strategies, :EventId
3861
+ attr_accessor :ActionType, :Bypass, :CreateTime, :ExpireTime, :Name, :Redirect, :RuleId, :SortId, :Status, :Strategies, :EventId, :ModifyTime, :ValidStatus, :Source
3836
3862
 
3837
- def initialize(actiontype=nil, bypass=nil, createtime=nil, expiretime=nil, name=nil, redirect=nil, ruleid=nil, sortid=nil, status=nil, strategies=nil, eventid=nil)
3863
+ def initialize(actiontype=nil, bypass=nil, createtime=nil, expiretime=nil, name=nil, redirect=nil, ruleid=nil, sortid=nil, status=nil, strategies=nil, eventid=nil, modifytime=nil, validstatus=nil, source=nil)
3838
3864
  @ActionType = actiontype
3839
3865
  @Bypass = bypass
3840
3866
  @CreateTime = createtime
@@ -3846,6 +3872,9 @@ module TencentCloud
3846
3872
  @Status = status
3847
3873
  @Strategies = strategies
3848
3874
  @EventId = eventid
3875
+ @ModifyTime = modifytime
3876
+ @ValidStatus = validstatus
3877
+ @Source = source
3849
3878
  end
3850
3879
 
3851
3880
  def deserialize(params)
@@ -3867,6 +3896,9 @@ module TencentCloud
3867
3896
  end
3868
3897
  end
3869
3898
  @EventId = params['EventId']
3899
+ @ModifyTime = params['ModifyTime']
3900
+ @ValidStatus = params['ValidStatus']
3901
+ @Source = params['Source']
3870
3902
  end
3871
3903
  end
3872
3904
 
@@ -4736,10 +4768,19 @@ module TencentCloud
4736
4768
  # @type Ip: String
4737
4769
  # @param ValidStatus: 生效状态
4738
4770
  # @type ValidStatus: Integer
4739
-
4740
- attr_accessor :Domain, :Count, :ActionType, :VtsMin, :VtsMax, :CtsMin, :CtsMax, :OffSet, :Limit, :Source, :Sort, :Ip, :ValidStatus
4741
-
4742
- def initialize(domain=nil, count=nil, actiontype=nil, vtsmin=nil, vtsmax=nil, ctsmin=nil, ctsmax=nil, offset=nil, limit=nil, source=nil, sort=nil, ip=nil, validstatus=nil)
4771
+ # @param ValidTimeStampMin: 最小有效时间的时间戳
4772
+ # @type ValidTimeStampMin: String
4773
+ # @param ValidTimeStampMax: 最大有效时间的时间戳
4774
+ # @type ValidTimeStampMax: String
4775
+
4776
+ attr_accessor :Domain, :Count, :ActionType, :VtsMin, :VtsMax, :CtsMin, :CtsMax, :OffSet, :Limit, :Source, :Sort, :Ip, :ValidStatus, :ValidTimeStampMin, :ValidTimeStampMax
4777
+ extend Gem::Deprecate
4778
+ deprecate :VtsMin, :none, 2023, 11
4779
+ deprecate :VtsMin=, :none, 2023, 11
4780
+ deprecate :VtsMax, :none, 2023, 11
4781
+ deprecate :VtsMax=, :none, 2023, 11
4782
+
4783
+ def initialize(domain=nil, count=nil, actiontype=nil, vtsmin=nil, vtsmax=nil, ctsmin=nil, ctsmax=nil, offset=nil, limit=nil, source=nil, sort=nil, ip=nil, validstatus=nil, validtimestampmin=nil, validtimestampmax=nil)
4743
4784
  @Domain = domain
4744
4785
  @Count = count
4745
4786
  @ActionType = actiontype
@@ -4753,6 +4794,8 @@ module TencentCloud
4753
4794
  @Sort = sort
4754
4795
  @Ip = ip
4755
4796
  @ValidStatus = validstatus
4797
+ @ValidTimeStampMin = validtimestampmin
4798
+ @ValidTimeStampMax = validtimestampmax
4756
4799
  end
4757
4800
 
4758
4801
  def deserialize(params)
@@ -4769,6 +4812,8 @@ module TencentCloud
4769
4812
  @Sort = params['Sort']
4770
4813
  @Ip = params['Ip']
4771
4814
  @ValidStatus = params['ValidStatus']
4815
+ @ValidTimeStampMin = params['ValidTimeStampMin']
4816
+ @ValidTimeStampMax = params['ValidTimeStampMax']
4772
4817
  end
4773
4818
  end
4774
4819
 
@@ -4822,10 +4867,19 @@ module TencentCloud
4822
4867
  # @type Sort: String
4823
4868
  # @param Ip: IP
4824
4869
  # @type Ip: String
4825
-
4826
- attr_accessor :Domain, :Count, :Category, :VtsMin, :VtsMax, :CtsMin, :CtsMax, :Skip, :Limit, :Name, :Sort, :Ip
4827
-
4828
- def initialize(domain=nil, count=nil, category=nil, vtsmin=nil, vtsmax=nil, ctsmin=nil, ctsmax=nil, skip=nil, limit=nil, name=nil, sort=nil, ip=nil)
4870
+ # @param ValidTimeStampMin: 有效时间最小时间戳
4871
+ # @type ValidTimeStampMin: Integer
4872
+ # @param ValidTimeStampMax: 有效时间最大时间戳
4873
+ # @type ValidTimeStampMax: Integer
4874
+
4875
+ attr_accessor :Domain, :Count, :Category, :VtsMin, :VtsMax, :CtsMin, :CtsMax, :Skip, :Limit, :Name, :Sort, :Ip, :ValidTimeStampMin, :ValidTimeStampMax
4876
+ extend Gem::Deprecate
4877
+ deprecate :VtsMin, :none, 2023, 11
4878
+ deprecate :VtsMin=, :none, 2023, 11
4879
+ deprecate :VtsMax, :none, 2023, 11
4880
+ deprecate :VtsMax=, :none, 2023, 11
4881
+
4882
+ def initialize(domain=nil, count=nil, category=nil, vtsmin=nil, vtsmax=nil, ctsmin=nil, ctsmax=nil, skip=nil, limit=nil, name=nil, sort=nil, ip=nil, validtimestampmin=nil, validtimestampmax=nil)
4829
4883
  @Domain = domain
4830
4884
  @Count = count
4831
4885
  @Category = category
@@ -4838,6 +4892,8 @@ module TencentCloud
4838
4892
  @Name = name
4839
4893
  @Sort = sort
4840
4894
  @Ip = ip
4895
+ @ValidTimeStampMin = validtimestampmin
4896
+ @ValidTimeStampMax = validtimestampmax
4841
4897
  end
4842
4898
 
4843
4899
  def deserialize(params)
@@ -4853,6 +4909,8 @@ module TencentCloud
4853
4909
  @Name = params['Name']
4854
4910
  @Sort = params['Sort']
4855
4911
  @Ip = params['Ip']
4912
+ @ValidTimeStampMin = params['ValidTimeStampMin']
4913
+ @ValidTimeStampMax = params['ValidTimeStampMax']
4856
4914
  end
4857
4915
  end
4858
4916
 
@@ -4910,18 +4968,21 @@ module TencentCloud
4910
4968
  # @type AntiLeakage: Integer
4911
4969
  # @param ApiProtection: API安全是否开启
4912
4970
  # @type ApiProtection: Integer
4971
+ # @param RateLimit: 限流模块开关
4972
+ # @type RateLimit: Integer
4913
4973
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4914
4974
  # @type RequestId: String
4915
4975
 
4916
- attr_accessor :WebSecurity, :AccessControl, :CcProtection, :AntiTamper, :AntiLeakage, :ApiProtection, :RequestId
4976
+ attr_accessor :WebSecurity, :AccessControl, :CcProtection, :AntiTamper, :AntiLeakage, :ApiProtection, :RateLimit, :RequestId
4917
4977
 
4918
- def initialize(websecurity=nil, accesscontrol=nil, ccprotection=nil, antitamper=nil, antileakage=nil, apiprotection=nil, requestid=nil)
4978
+ def initialize(websecurity=nil, accesscontrol=nil, ccprotection=nil, antitamper=nil, antileakage=nil, apiprotection=nil, ratelimit=nil, requestid=nil)
4919
4979
  @WebSecurity = websecurity
4920
4980
  @AccessControl = accesscontrol
4921
4981
  @CcProtection = ccprotection
4922
4982
  @AntiTamper = antitamper
4923
4983
  @AntiLeakage = antileakage
4924
4984
  @ApiProtection = apiprotection
4985
+ @RateLimit = ratelimit
4925
4986
  @RequestId = requestid
4926
4987
  end
4927
4988
 
@@ -4932,6 +4993,7 @@ module TencentCloud
4932
4993
  @AntiTamper = params['AntiTamper']
4933
4994
  @AntiLeakage = params['AntiLeakage']
4934
4995
  @ApiProtection = params['ApiProtection']
4996
+ @RateLimit = params['RateLimit']
4935
4997
  @RequestId = params['RequestId']
4936
4998
  end
4937
4999
  end
@@ -5004,7 +5066,7 @@ module TencentCloud
5004
5066
  # @type Edition: String
5005
5067
  # @param InstanceID: WAF实例ID,不传则不过滤
5006
5068
  # @type InstanceID: String
5007
- # @param MetricName: 十一个值可选:
5069
+ # @param MetricName: 十二个值可选:
5008
5070
  # access-峰值qps趋势图
5009
5071
  # botAccess- bot峰值qps趋势图
5010
5072
  # down-下行峰值带宽趋势图
@@ -5016,6 +5078,7 @@ module TencentCloud
5016
5078
  # leak-防泄露攻击总数趋势图
5017
5079
  # acl-访问控制攻击总数趋势图
5018
5080
  # http_status-状态码各次数趋势图
5081
+ # wx_access-微信小程序峰值qps趋势图
5019
5082
  # @type MetricName: String
5020
5083
 
5021
5084
  attr_accessor :FromTime, :ToTime, :Domain, :Edition, :InstanceID, :MetricName
@@ -8072,9 +8135,9 @@ module TencentCloud
8072
8135
 
8073
8136
  # ModifyAccessPeriod请求参数结构体
8074
8137
  class ModifyAccessPeriodRequest < TencentCloud::Common::AbstractModel
8075
- # @param Period: 访问日志保存期限,范围为[1, 30]
8138
+ # @param Period: 访问日志保存期限,范围为[1, 180]
8076
8139
  # @type Period: Integer
8077
- # @param TopicId: 日志主题
8140
+ # @param TopicId: 日志主题,新版本不需要再传
8078
8141
  # @type TopicId: String
8079
8142
 
8080
8143
  attr_accessor :Period, :TopicId
@@ -9322,10 +9385,12 @@ module TencentCloud
9322
9385
  # @type AntiTamper: Integer
9323
9386
  # @param AntiLeakage: 防泄漏模块开关,0或者1
9324
9387
  # @type AntiLeakage: Integer
9388
+ # @param RateLimit: 限流模块开关,0或1
9389
+ # @type RateLimit: Integer
9325
9390
 
9326
- attr_accessor :Domain, :WebSecurity, :AccessControl, :CcProtection, :ApiProtection, :AntiTamper, :AntiLeakage
9391
+ attr_accessor :Domain, :WebSecurity, :AccessControl, :CcProtection, :ApiProtection, :AntiTamper, :AntiLeakage, :RateLimit
9327
9392
 
9328
- def initialize(domain=nil, websecurity=nil, accesscontrol=nil, ccprotection=nil, apiprotection=nil, antitamper=nil, antileakage=nil)
9393
+ def initialize(domain=nil, websecurity=nil, accesscontrol=nil, ccprotection=nil, apiprotection=nil, antitamper=nil, antileakage=nil, ratelimit=nil)
9329
9394
  @Domain = domain
9330
9395
  @WebSecurity = websecurity
9331
9396
  @AccessControl = accesscontrol
@@ -9333,6 +9398,7 @@ module TencentCloud
9333
9398
  @ApiProtection = apiprotection
9334
9399
  @AntiTamper = antitamper
9335
9400
  @AntiLeakage = antileakage
9401
+ @RateLimit = ratelimit
9336
9402
  end
9337
9403
 
9338
9404
  def deserialize(params)
@@ -9343,6 +9409,7 @@ module TencentCloud
9343
9409
  @ApiProtection = params['ApiProtection']
9344
9410
  @AntiTamper = params['AntiTamper']
9345
9411
  @AntiLeakage = params['AntiLeakage']
9412
+ @RateLimit = params['RateLimit']
9346
9413
  end
9347
9414
  end
9348
9415
 
@@ -9954,10 +10021,13 @@ module TencentCloud
9954
10021
  # @param ACL: 访问控制
9955
10022
  # 注意:此字段可能返回 null,表示取不到有效值。
9956
10023
  # @type ACL: Integer
10024
+ # @param WxAccess: 小程序 qps
10025
+ # 注意:此字段可能返回 null,表示取不到有效值。
10026
+ # @type WxAccess: Integer
9957
10027
 
9958
- attr_accessor :Time, :Access, :Up, :Down, :Attack, :Cc, :BotAccess, :StatusServerError, :StatusClientError, :StatusRedirect, :StatusOk, :UpstreamServerError, :UpstreamClientError, :UpstreamRedirect, :BlackIP, :Tamper, :Leak, :ACL
10028
+ attr_accessor :Time, :Access, :Up, :Down, :Attack, :Cc, :BotAccess, :StatusServerError, :StatusClientError, :StatusRedirect, :StatusOk, :UpstreamServerError, :UpstreamClientError, :UpstreamRedirect, :BlackIP, :Tamper, :Leak, :ACL, :WxAccess
9959
10029
 
9960
- def initialize(time=nil, access=nil, up=nil, down=nil, attack=nil, cc=nil, botaccess=nil, statusservererror=nil, statusclienterror=nil, statusredirect=nil, statusok=nil, upstreamservererror=nil, upstreamclienterror=nil, upstreamredirect=nil, blackip=nil, tamper=nil, leak=nil, acl=nil)
10030
+ def initialize(time=nil, access=nil, up=nil, down=nil, attack=nil, cc=nil, botaccess=nil, statusservererror=nil, statusclienterror=nil, statusredirect=nil, statusok=nil, upstreamservererror=nil, upstreamclienterror=nil, upstreamredirect=nil, blackip=nil, tamper=nil, leak=nil, acl=nil, wxaccess=nil)
9961
10031
  @Time = time
9962
10032
  @Access = access
9963
10033
  @Up = up
@@ -9976,6 +10046,7 @@ module TencentCloud
9976
10046
  @Tamper = tamper
9977
10047
  @Leak = leak
9978
10048
  @ACL = acl
10049
+ @WxAccess = wxaccess
9979
10050
  end
9980
10051
 
9981
10052
  def deserialize(params)
@@ -9997,6 +10068,7 @@ module TencentCloud
9997
10068
  @Tamper = params['Tamper']
9998
10069
  @Leak = params['Leak']
9999
10070
  @ACL = params['ACL']
10071
+ @WxAccess = params['WxAccess']
10000
10072
  end
10001
10073
  end
10002
10074
 
@@ -11184,20 +11256,25 @@ module TencentCloud
11184
11256
  # @param FailedCount: 添加或修改失败的数目
11185
11257
  # 注意:此字段可能返回 null,表示取不到有效值。
11186
11258
  # @type FailedCount: Integer
11259
+ # @param Ids: 添加或修改的IP数据Id列表
11260
+ # 注意:此字段可能返回 null,表示取不到有效值。
11261
+ # @type Ids: Array
11187
11262
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11188
11263
  # @type RequestId: String
11189
11264
 
11190
- attr_accessor :FailedItems, :FailedCount, :RequestId
11265
+ attr_accessor :FailedItems, :FailedCount, :Ids, :RequestId
11191
11266
 
11192
- def initialize(faileditems=nil, failedcount=nil, requestid=nil)
11267
+ def initialize(faileditems=nil, failedcount=nil, ids=nil, requestid=nil)
11193
11268
  @FailedItems = faileditems
11194
11269
  @FailedCount = failedcount
11270
+ @Ids = ids
11195
11271
  @RequestId = requestid
11196
11272
  end
11197
11273
 
11198
11274
  def deserialize(params)
11199
11275
  @FailedItems = params['FailedItems']
11200
11276
  @FailedCount = params['FailedCount']
11277
+ @Ids = params['Ids']
11201
11278
  @RequestId = params['RequestId']
11202
11279
  end
11203
11280
  end
@@ -11259,18 +11336,23 @@ module TencentCloud
11259
11336
  # @param Data: 结果
11260
11337
  # 注意:此字段可能返回 null,表示取不到有效值。
11261
11338
  # @type Data: String
11339
+ # @param SessionID: SessionID
11340
+ # 注意:此字段可能返回 null,表示取不到有效值。
11341
+ # @type SessionID: Integer
11262
11342
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11263
11343
  # @type RequestId: String
11264
11344
 
11265
- attr_accessor :Data, :RequestId
11345
+ attr_accessor :Data, :SessionID, :RequestId
11266
11346
 
11267
- def initialize(data=nil, requestid=nil)
11347
+ def initialize(data=nil, sessionid=nil, requestid=nil)
11268
11348
  @Data = data
11349
+ @SessionID = sessionid
11269
11350
  @RequestId = requestid
11270
11351
  end
11271
11352
 
11272
11353
  def deserialize(params)
11273
11354
  @Data = params['Data']
11355
+ @SessionID = params['SessionID']
11274
11356
  @RequestId = params['RequestId']
11275
11357
  end
11276
11358
  end
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.707
4
+ version: 3.0.708
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-11-19 00:00:00.000000000 Z
11
+ date: 2023-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common