tencentcloud-sdk-pts 3.0.1012 → 3.0.1013

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/v20210728/models.rb +28 -11
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 69c1b3f7a09fd65b621ecc5c8540b3da17a065c9
4
- data.tar.gz: 36101ace8f1f2451003eda27f34bb961ba1b5acb
3
+ metadata.gz: b12e643fadb99c91e758ab939ab11f46a2795aed
4
+ data.tar.gz: 899d891dbca4a1a8b302142d8a0b4713a0939285
5
5
  SHA512:
6
- metadata.gz: d3c25210266c010743e5dd284971fb19b37ce97dbe8568d6a3c3fbeef8b7722fe72d78ceac2422b56bdb4be30deb56ec30a1efe6292273dfaff90fc0eca7526a
7
- data.tar.gz: d2f83b2eae3aaa5b5ce21763cde54ff89365341301b0efa2d2332b86088d89da971c3c22cc948635df86174b61dcc1b065a032f7a31f5f417e9a033054015d40
6
+ metadata.gz: 2b0f8af49fa077e9df2dfa34e3e06c8bcb1c0811b0efd3757ee682eeb091c13e55e59cb19112933e143bb811c9cd75e25d38ca10893c50ad7b00605b8127edc5
7
+ data.tar.gz: 36035ae983b07677076e60f81c9d6177f3c03954c3784f292230e95322ad26a62ca2daf7b3f98fd8fec65cf76548330e0aa7aff19ac3963350a59a67c6789fdb
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1012
1
+ 3.0.1013
@@ -2346,7 +2346,7 @@ module TencentCloud
2346
2346
  # @type ScenarioId: String
2347
2347
  # @param JobId: 测试任务ID
2348
2348
  # @type JobId: String
2349
- # @param Context: 加载更多日志时使用,透传上次返回的Context值,获取后续的日志内容。过期时间1小时
2349
+ # @param Context: 加载更多日志时使用,透传上次返回的Context值,获取后续的日志内容。过期时间1小时,不与 Offset 参数同时使用
2350
2350
  # @type Context: String
2351
2351
  # @param From: 日志开始时间
2352
2352
  # @type From: String
@@ -2354,12 +2354,14 @@ module TencentCloud
2354
2354
  # @type To: String
2355
2355
  # @param SeverityText: 日志级别debug,info,error
2356
2356
  # @type SeverityText: String
2357
- # @param InstanceRegion: ap-shanghai, ap-guangzhou
2357
+ # @param InstanceRegion: 地域
2358
2358
  # @type InstanceRegion: String
2359
2359
  # @param Instance: 施压引擎节点IP
2360
2360
  # @type Instance: String
2361
- # @param LogType: request 代表采样日志,可为不填
2361
+ # @param LogType: request 代表采样日志,engine 代表引擎日志,console 代表用户打印日志
2362
2362
  # @type LogType: String
2363
+ # @param Offset: 日志偏移量,不与Context 参数同时使用
2364
+ # @type Offset: Integer
2363
2365
  # @param Limit: 返回日志条数,最大100
2364
2366
  # @type Limit: Integer
2365
2367
  # @param ReactionTimeRange: 采样日志响应时间范围
@@ -2373,9 +2375,9 @@ module TencentCloud
2373
2375
  # @param Service: 采样服务API
2374
2376
  # @type Service: String
2375
2377
 
2376
- attr_accessor :ProjectId, :ScenarioId, :JobId, :Context, :From, :To, :SeverityText, :InstanceRegion, :Instance, :LogType, :Limit, :ReactionTimeRange, :Status, :Result, :Method, :Service
2378
+ attr_accessor :ProjectId, :ScenarioId, :JobId, :Context, :From, :To, :SeverityText, :InstanceRegion, :Instance, :LogType, :Offset, :Limit, :ReactionTimeRange, :Status, :Result, :Method, :Service
2377
2379
 
2378
- def initialize(projectid=nil, scenarioid=nil, jobid=nil, context=nil, from=nil, to=nil, severitytext=nil, instanceregion=nil, instance=nil, logtype=nil, limit=nil, reactiontimerange=nil, status=nil, result=nil, method=nil, service=nil)
2380
+ def initialize(projectid=nil, scenarioid=nil, jobid=nil, context=nil, from=nil, to=nil, severitytext=nil, instanceregion=nil, instance=nil, logtype=nil, offset=nil, limit=nil, reactiontimerange=nil, status=nil, result=nil, method=nil, service=nil)
2379
2381
  @ProjectId = projectid
2380
2382
  @ScenarioId = scenarioid
2381
2383
  @JobId = jobid
@@ -2386,6 +2388,7 @@ module TencentCloud
2386
2388
  @InstanceRegion = instanceregion
2387
2389
  @Instance = instance
2388
2390
  @LogType = logtype
2391
+ @Offset = offset
2389
2392
  @Limit = limit
2390
2393
  @ReactionTimeRange = reactiontimerange
2391
2394
  @Status = status
@@ -2405,6 +2408,7 @@ module TencentCloud
2405
2408
  @InstanceRegion = params['InstanceRegion']
2406
2409
  @Instance = params['Instance']
2407
2410
  @LogType = params['LogType']
2411
+ @Offset = params['Offset']
2408
2412
  @Limit = params['Limit']
2409
2413
  unless params['ReactionTimeRange'].nil?
2410
2414
  @ReactionTimeRange = ReactionTimeRange.new
@@ -2463,14 +2467,17 @@ module TencentCloud
2463
2467
  # @type ScenarioId: String
2464
2468
  # @param Queries: 查询语句
2465
2469
  # @type Queries: Array
2470
+ # @param MaxPoint: 最多返回的数据点个数
2471
+ # @type MaxPoint: Integer
2466
2472
 
2467
- attr_accessor :JobId, :ProjectId, :ScenarioId, :Queries
2473
+ attr_accessor :JobId, :ProjectId, :ScenarioId, :Queries, :MaxPoint
2468
2474
 
2469
- def initialize(jobid=nil, projectid=nil, scenarioid=nil, queries=nil)
2475
+ def initialize(jobid=nil, projectid=nil, scenarioid=nil, queries=nil, maxpoint=nil)
2470
2476
  @JobId = jobid
2471
2477
  @ProjectId = projectid
2472
2478
  @ScenarioId = scenarioid
2473
2479
  @Queries = queries
2480
+ @MaxPoint = maxpoint
2474
2481
  end
2475
2482
 
2476
2483
  def deserialize(params)
@@ -2485,6 +2492,7 @@ module TencentCloud
2485
2492
  @Queries << internalmetricquery_tmp
2486
2493
  end
2487
2494
  end
2495
+ @MaxPoint = params['MaxPoint']
2488
2496
  end
2489
2497
  end
2490
2498
 
@@ -2532,10 +2540,12 @@ module TencentCloud
2532
2540
  # @type Filters: Array
2533
2541
  # @param GroupBy: 分组;取值范围参见 DescribeMetricLabelWithValues 接口返回的指标及其支持的标签名
2534
2542
  # @type GroupBy: Array
2543
+ # @param MaxPoint: 返回的最大数据点个数
2544
+ # @type MaxPoint: Integer
2535
2545
 
2536
- attr_accessor :JobId, :ProjectId, :ScenarioId, :Metric, :Aggregation, :Filters, :GroupBy
2546
+ attr_accessor :JobId, :ProjectId, :ScenarioId, :Metric, :Aggregation, :Filters, :GroupBy, :MaxPoint
2537
2547
 
2538
- def initialize(jobid=nil, projectid=nil, scenarioid=nil, metric=nil, aggregation=nil, filters=nil, groupby=nil)
2548
+ def initialize(jobid=nil, projectid=nil, scenarioid=nil, metric=nil, aggregation=nil, filters=nil, groupby=nil, maxpoint=nil)
2539
2549
  @JobId = jobid
2540
2550
  @ProjectId = projectid
2541
2551
  @ScenarioId = scenarioid
@@ -2543,6 +2553,7 @@ module TencentCloud
2543
2553
  @Aggregation = aggregation
2544
2554
  @Filters = filters
2545
2555
  @GroupBy = groupby
2556
+ @MaxPoint = maxpoint
2546
2557
  end
2547
2558
 
2548
2559
  def deserialize(params)
@@ -2560,6 +2571,7 @@ module TencentCloud
2560
2571
  end
2561
2572
  end
2562
2573
  @GroupBy = params['GroupBy']
2574
+ @MaxPoint = params['MaxPoint']
2563
2575
  end
2564
2576
  end
2565
2577
 
@@ -4509,10 +4521,13 @@ module TencentCloud
4509
4521
  # @type LoadWeight: Integer
4510
4522
  # @param FileId: 文件 ID
4511
4523
  # @type FileId: String
4524
+ # @param Uploaded: 文件是否已上传,如果已上传,则可以不必填写 EncodedContent,EncodedHar 等内容。
4525
+ # 主要用于较大长度脚本上传。
4526
+ # @type Uploaded: Boolean
4512
4527
 
4513
- attr_accessor :Name, :Size, :Type, :UpdatedAt, :EncodedContent, :EncodedHttpArchive, :LoadWeight, :FileId
4528
+ attr_accessor :Name, :Size, :Type, :UpdatedAt, :EncodedContent, :EncodedHttpArchive, :LoadWeight, :FileId, :Uploaded
4514
4529
 
4515
- def initialize(name=nil, size=nil, type=nil, updatedat=nil, encodedcontent=nil, encodedhttparchive=nil, loadweight=nil, fileid=nil)
4530
+ def initialize(name=nil, size=nil, type=nil, updatedat=nil, encodedcontent=nil, encodedhttparchive=nil, loadweight=nil, fileid=nil, uploaded=nil)
4516
4531
  @Name = name
4517
4532
  @Size = size
4518
4533
  @Type = type
@@ -4521,6 +4536,7 @@ module TencentCloud
4521
4536
  @EncodedHttpArchive = encodedhttparchive
4522
4537
  @LoadWeight = loadweight
4523
4538
  @FileId = fileid
4539
+ @Uploaded = uploaded
4524
4540
  end
4525
4541
 
4526
4542
  def deserialize(params)
@@ -4532,6 +4548,7 @@ module TencentCloud
4532
4548
  @EncodedHttpArchive = params['EncodedHttpArchive']
4533
4549
  @LoadWeight = params['LoadWeight']
4534
4550
  @FileId = params['FileId']
4551
+ @Uploaded = params['Uploaded']
4535
4552
  end
4536
4553
  end
4537
4554
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-pts
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1012
4
+ version: 3.0.1013
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-03-05 00:00:00.000000000 Z
11
+ date: 2025-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common