tencentcloud-sdk-waf 3.0.578 → 3.0.580
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 +27 -10
- 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: 566a6902914663e3ca8d14399e6a0be67d132149
|
4
|
+
data.tar.gz: be883414fdc5ad6c088f992974a5d20fda0a3da8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49f68067853139480c060de8107f49222667f33f8a0fef7809d88b5aa48302b0a0e36421479ee38b1fefa40e9a6008971b5904705bfa30408306daac50a55ba9
|
7
|
+
data.tar.gz: 680aec4304864884c9d8799a559a89503cdad4cf47d1ec5e42f37da799a22f435397e44bd5a9cc65b0d334accbb4b51257743bbc07681c6c4c96084161e8385f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.580
|
data/lib/v20180125/models.rb
CHANGED
@@ -4245,16 +4245,19 @@ module TencentCloud
|
|
4245
4245
|
# @type TaskName: String
|
4246
4246
|
# @param Sort: 默认为desc,可以取值desc和asc
|
4247
4247
|
# @type Sort: String
|
4248
|
+
# @param Count: 下载的日志条数
|
4249
|
+
# @type Count: Integer
|
4248
4250
|
|
4249
|
-
attr_accessor :Domain, :StartTime, :EndTime, :QueryString, :TaskName, :Sort
|
4251
|
+
attr_accessor :Domain, :StartTime, :EndTime, :QueryString, :TaskName, :Sort, :Count
|
4250
4252
|
|
4251
|
-
def initialize(domain=nil, starttime=nil, endtime=nil, querystring=nil, taskname=nil, sort=nil)
|
4253
|
+
def initialize(domain=nil, starttime=nil, endtime=nil, querystring=nil, taskname=nil, sort=nil, count=nil)
|
4252
4254
|
@Domain = domain
|
4253
4255
|
@StartTime = starttime
|
4254
4256
|
@EndTime = endtime
|
4255
4257
|
@QueryString = querystring
|
4256
4258
|
@TaskName = taskname
|
4257
4259
|
@Sort = sort
|
4260
|
+
@Count = count
|
4258
4261
|
end
|
4259
4262
|
|
4260
4263
|
def deserialize(params)
|
@@ -4264,6 +4267,7 @@ module TencentCloud
|
|
4264
4267
|
@QueryString = params['QueryString']
|
4265
4268
|
@TaskName = params['TaskName']
|
4266
4269
|
@Sort = params['Sort']
|
4270
|
+
@Count = params['Count']
|
4267
4271
|
end
|
4268
4272
|
end
|
4269
4273
|
|
@@ -4299,15 +4303,18 @@ module TencentCloud
|
|
4299
4303
|
# @type Count: Integer
|
4300
4304
|
# @param Region: 套餐购买地域,clb-waf暂时没有用到
|
4301
4305
|
# @type Region: String
|
4306
|
+
# @param BillingItem: 计费项
|
4307
|
+
# @type BillingItem: String
|
4302
4308
|
|
4303
|
-
attr_accessor :ResourceIds, :ValidTime, :RenewFlag, :Count, :Region
|
4309
|
+
attr_accessor :ResourceIds, :ValidTime, :RenewFlag, :Count, :Region, :BillingItem
|
4304
4310
|
|
4305
|
-
def initialize(resourceids=nil, validtime=nil, renewflag=nil, count=nil, region=nil)
|
4311
|
+
def initialize(resourceids=nil, validtime=nil, renewflag=nil, count=nil, region=nil, billingitem=nil)
|
4306
4312
|
@ResourceIds = resourceids
|
4307
4313
|
@ValidTime = validtime
|
4308
4314
|
@RenewFlag = renewflag
|
4309
4315
|
@Count = count
|
4310
4316
|
@Region = region
|
4317
|
+
@BillingItem = billingitem
|
4311
4318
|
end
|
4312
4319
|
|
4313
4320
|
def deserialize(params)
|
@@ -4316,6 +4323,7 @@ module TencentCloud
|
|
4316
4323
|
@RenewFlag = params['RenewFlag']
|
4317
4324
|
@Count = params['Count']
|
4318
4325
|
@Region = params['Region']
|
4326
|
+
@BillingItem = params['BillingItem']
|
4319
4327
|
end
|
4320
4328
|
end
|
4321
4329
|
|
@@ -4377,7 +4385,7 @@ module TencentCloud
|
|
4377
4385
|
|
4378
4386
|
# SearchAccessLog请求参数结构体
|
4379
4387
|
class SearchAccessLogRequest < TencentCloud::Common::AbstractModel
|
4380
|
-
# @param TopicId: 客户要查询的日志主题ID
|
4388
|
+
# @param TopicId: 客户要查询的日志主题ID,每个客户都有对应的一个主题,新版本此字段填空字符串
|
4381
4389
|
# @type TopicId: String
|
4382
4390
|
# @param From: 要查询的日志的起始时间,Unix时间戳,单位ms
|
4383
4391
|
# @type From: Integer
|
@@ -4387,14 +4395,17 @@ module TencentCloud
|
|
4387
4395
|
# @type Query: String
|
4388
4396
|
# @param Limit: 单次查询返回的日志条数,最大值为100
|
4389
4397
|
# @type Limit: Integer
|
4390
|
-
# @param Context: 加载更多日志时使用,透传上次返回的Context
|
4398
|
+
# @param Context: 加载更多日志时使用,透传上次返回的Context值,获取后续的日志内容。
|
4399
|
+
# 新版本此字段填空填
|
4391
4400
|
# @type Context: String
|
4392
4401
|
# @param Sort: 日志接口是否按时间排序返回;可选值:asc(升序)、desc(降序),默认为 desc
|
4393
4402
|
# @type Sort: String
|
4403
|
+
# @param Page: 第几页,从0开始。新版本接口字段
|
4404
|
+
# @type Page: Integer
|
4394
4405
|
|
4395
|
-
attr_accessor :TopicId, :From, :To, :Query, :Limit, :Context, :Sort
|
4406
|
+
attr_accessor :TopicId, :From, :To, :Query, :Limit, :Context, :Sort, :Page
|
4396
4407
|
|
4397
|
-
def initialize(topicid=nil, from=nil, to=nil, query=nil, limit=nil, context=nil, sort=nil)
|
4408
|
+
def initialize(topicid=nil, from=nil, to=nil, query=nil, limit=nil, context=nil, sort=nil, page=nil)
|
4398
4409
|
@TopicId = topicid
|
4399
4410
|
@From = from
|
4400
4411
|
@To = to
|
@@ -4402,6 +4413,7 @@ module TencentCloud
|
|
4402
4413
|
@Limit = limit
|
4403
4414
|
@Context = context
|
4404
4415
|
@Sort = sort
|
4416
|
+
@Page = page
|
4405
4417
|
end
|
4406
4418
|
|
4407
4419
|
def deserialize(params)
|
@@ -4412,6 +4424,7 @@ module TencentCloud
|
|
4412
4424
|
@Limit = params['Limit']
|
4413
4425
|
@Context = params['Context']
|
4414
4426
|
@Sort = params['Sort']
|
4427
|
+
@Page = params['Page']
|
4415
4428
|
end
|
4416
4429
|
end
|
4417
4430
|
|
@@ -4491,10 +4504,12 @@ module TencentCloud
|
|
4491
4504
|
# @type Count: Integer
|
4492
4505
|
# @param Sort: 默认为desc,可以取值desc和asc
|
4493
4506
|
# @type Sort: String
|
4507
|
+
# @param Page: 第几页,从0开始
|
4508
|
+
# @type Page: Integer
|
4494
4509
|
|
4495
|
-
attr_accessor :Domain, :StartTime, :EndTime, :Context, :QueryString, :Count, :Sort
|
4510
|
+
attr_accessor :Domain, :StartTime, :EndTime, :Context, :QueryString, :Count, :Sort, :Page
|
4496
4511
|
|
4497
|
-
def initialize(domain=nil, starttime=nil, endtime=nil, context=nil, querystring=nil, count=nil, sort=nil)
|
4512
|
+
def initialize(domain=nil, starttime=nil, endtime=nil, context=nil, querystring=nil, count=nil, sort=nil, page=nil)
|
4498
4513
|
@Domain = domain
|
4499
4514
|
@StartTime = starttime
|
4500
4515
|
@EndTime = endtime
|
@@ -4502,6 +4517,7 @@ module TencentCloud
|
|
4502
4517
|
@QueryString = querystring
|
4503
4518
|
@Count = count
|
4504
4519
|
@Sort = sort
|
4520
|
+
@Page = page
|
4505
4521
|
end
|
4506
4522
|
|
4507
4523
|
def deserialize(params)
|
@@ -4512,6 +4528,7 @@ module TencentCloud
|
|
4512
4528
|
@QueryString = params['QueryString']
|
4513
4529
|
@Count = params['Count']
|
4514
4530
|
@Sort = params['Sort']
|
4531
|
+
@Page = params['Page']
|
4515
4532
|
end
|
4516
4533
|
end
|
4517
4534
|
|
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.580
|
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-05-
|
11
|
+
date: 2023-05-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|