tencentcloud-sdk-pts 3.0.1193 → 3.0.1198
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/v20210728/models.rb +12 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ffcf0877c7293df8a171ef1173740d4797b9dbe
|
|
4
|
+
data.tar.gz: 13d314cd87c451e8b23854cf22cd5cffc5f00de2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 08baaabe18e618500d4096140c50b2c6ce8cd34c58f7e33bead55ffbaa262830b5417e16c501641021a4dcfd2d4c730b78e80905d68be4a42b450f4f208899f9
|
|
7
|
+
data.tar.gz: 3db86e33638a444301c6e3ef29eb4171c6a6b6dbc7194c239bacb941183ce204b1c89f5468fe4b9bfdb406dc4b72b2a881cd2c6cc426acfc40526d5758609783
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1198
|
data/lib/v20210728/models.rb
CHANGED
|
@@ -402,15 +402,18 @@ module TencentCloud
|
|
|
402
402
|
# @type GracefulStopSeconds: Integer
|
|
403
403
|
# @param Resources: 资源数
|
|
404
404
|
# @type Resources: Integer
|
|
405
|
+
# @param Mode: 压力模型
|
|
406
|
+
# @type Mode: String
|
|
405
407
|
|
|
406
|
-
attr_accessor :Stages, :IterationCount, :MaxRequestsPerSecond, :GracefulStopSeconds, :Resources
|
|
408
|
+
attr_accessor :Stages, :IterationCount, :MaxRequestsPerSecond, :GracefulStopSeconds, :Resources, :Mode
|
|
407
409
|
|
|
408
|
-
def initialize(stages=nil, iterationcount=nil, maxrequestspersecond=nil, gracefulstopseconds=nil, resources=nil)
|
|
410
|
+
def initialize(stages=nil, iterationcount=nil, maxrequestspersecond=nil, gracefulstopseconds=nil, resources=nil, mode=nil)
|
|
409
411
|
@Stages = stages
|
|
410
412
|
@IterationCount = iterationcount
|
|
411
413
|
@MaxRequestsPerSecond = maxrequestspersecond
|
|
412
414
|
@GracefulStopSeconds = gracefulstopseconds
|
|
413
415
|
@Resources = resources
|
|
416
|
+
@Mode = mode
|
|
414
417
|
end
|
|
415
418
|
|
|
416
419
|
def deserialize(params)
|
|
@@ -426,6 +429,7 @@ module TencentCloud
|
|
|
426
429
|
@MaxRequestsPerSecond = params['MaxRequestsPerSecond']
|
|
427
430
|
@GracefulStopSeconds = params['GracefulStopSeconds']
|
|
428
431
|
@Resources = params['Resources']
|
|
432
|
+
@Mode = params['Mode']
|
|
429
433
|
end
|
|
430
434
|
end
|
|
431
435
|
|
|
@@ -4086,10 +4090,12 @@ module TencentCloud
|
|
|
4086
4090
|
# @type TargetRequestsPerSecond: Integer
|
|
4087
4091
|
# @param GracefulStopSeconds: 优雅关停的等待时间
|
|
4088
4092
|
# @type GracefulStopSeconds: Integer
|
|
4093
|
+
# @param IterationCount: 场景最大执行次数
|
|
4094
|
+
# @type IterationCount: Integer
|
|
4089
4095
|
|
|
4090
|
-
attr_accessor :MaxRequestsPerSecond, :DurationSeconds, :TargetVirtualUsers, :Resources, :StartRequestsPerSecond, :TargetRequestsPerSecond, :GracefulStopSeconds
|
|
4096
|
+
attr_accessor :MaxRequestsPerSecond, :DurationSeconds, :TargetVirtualUsers, :Resources, :StartRequestsPerSecond, :TargetRequestsPerSecond, :GracefulStopSeconds, :IterationCount
|
|
4091
4097
|
|
|
4092
|
-
def initialize(maxrequestspersecond=nil, durationseconds=nil, targetvirtualusers=nil, resources=nil, startrequestspersecond=nil, targetrequestspersecond=nil, gracefulstopseconds=nil)
|
|
4098
|
+
def initialize(maxrequestspersecond=nil, durationseconds=nil, targetvirtualusers=nil, resources=nil, startrequestspersecond=nil, targetrequestspersecond=nil, gracefulstopseconds=nil, iterationcount=nil)
|
|
4093
4099
|
@MaxRequestsPerSecond = maxrequestspersecond
|
|
4094
4100
|
@DurationSeconds = durationseconds
|
|
4095
4101
|
@TargetVirtualUsers = targetvirtualusers
|
|
@@ -4097,6 +4103,7 @@ module TencentCloud
|
|
|
4097
4103
|
@StartRequestsPerSecond = startrequestspersecond
|
|
4098
4104
|
@TargetRequestsPerSecond = targetrequestspersecond
|
|
4099
4105
|
@GracefulStopSeconds = gracefulstopseconds
|
|
4106
|
+
@IterationCount = iterationcount
|
|
4100
4107
|
end
|
|
4101
4108
|
|
|
4102
4109
|
def deserialize(params)
|
|
@@ -4107,6 +4114,7 @@ module TencentCloud
|
|
|
4107
4114
|
@StartRequestsPerSecond = params['StartRequestsPerSecond']
|
|
4108
4115
|
@TargetRequestsPerSecond = params['TargetRequestsPerSecond']
|
|
4109
4116
|
@GracefulStopSeconds = params['GracefulStopSeconds']
|
|
4117
|
+
@IterationCount = params['IterationCount']
|
|
4110
4118
|
end
|
|
4111
4119
|
end
|
|
4112
4120
|
|
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.
|
|
4
|
+
version: 3.0.1198
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- lib/tencentcloud-sdk-pts.rb
|
|
36
37
|
- lib/v20210728/client.rb
|
|
37
38
|
- lib/v20210728/models.rb
|
|
38
|
-
- lib/tencentcloud-sdk-pts.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|