tencentcloud-sdk-waf 3.0.579 → 3.0.581

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180125/models.rb +27 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a475f3c4746888293ca60cd3cf39893114a65a2
4
- data.tar.gz: 040dbe57f82b95786246f5b54923693cac019176
3
+ metadata.gz: e2e03f6a593b042457df4cc04a809ac2ac46b66d
4
+ data.tar.gz: c8e5624db721d710a979534302f3fc6fc683ec83
5
5
  SHA512:
6
- metadata.gz: 0c1836c0d26e81f4f9d5eeee2dc163fc3816fba1b102a0ecf0064453c0a010e2b331ac5e5de45864857facf68acdcfb356f466c0db1dd3d6911a6d858ca071b9
7
- data.tar.gz: ae607896d7461c275648cbae7a65d98bf6d38590c460d725753a55f52d76f161812ef07b242ebee04c75746f80b8e7dbf509e56c46143627935b5fd43c406dfe
6
+ metadata.gz: 0f52a19ffbd3dd293e39c698d06bb4707db02baaca504d1e4efcea4e0901c2be0342cb37fd17ff110d9ea3e34a89e0a6d4a09d8522b44acb44ef47d1cca87eeb
7
+ data.tar.gz: 2e7e058b37dc58cee36d00554e7cd95127951b93e6fb48e2b32988952311d1330c0fe869581bdc5f47c78676d5edc2f3496db62836cb75b9b793f51c08159c52
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.579
1
+ 3.0.581
@@ -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.579
4
+ version: 3.0.581
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-29 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common