tencentcloud-sdk-thpc 3.0.997 → 3.0.998
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20230321/models.rb +12 -4
- 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: f81c8a69deab726f6782608fb2aee9cca6574f43
|
4
|
+
data.tar.gz: 42a7e56671ee62a537bc30700169fd4244d11d7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64e8216d4a772ec3428f26cec649d2918595fac3608da10d99e3b07ec8db42f0dba8122851b8b20245d47b9bdd74d0a8c4f9942f70189901f0a8015eb6f8e8a6
|
7
|
+
data.tar.gz: c70971a728e91483e8ada161f834d5b3777c9b106c3cf9cf6bd4674b60e5df5eea3b946074485382d15b46f1f8a66c194857882a9e7d15d03678b9b2a718f577
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.998
|
data/lib/v20230321/models.rb
CHANGED
@@ -2310,6 +2310,8 @@ module TencentCloud
|
|
2310
2310
|
# @type ExpansionNodeConfigs: Array
|
2311
2311
|
# @param DesiredIdleNodeCapacity: 队列中期望的空闲节点数量(包含弹性节点和静态节点)。默认值:0。队列中,处于空闲状态的节点小于此值,集群会扩容弹性节点;处于空闲状态的节点大于此值,集群会缩容弹性节点。
|
2312
2312
|
# @type DesiredIdleNodeCapacity: Integer
|
2313
|
+
# @param DesiredNodeCount: 队列中期望的总节点数。
|
2314
|
+
# @type DesiredNodeCount: Integer
|
2313
2315
|
# @param ScaleOutRatio: 扩容比例。默认值:100。取值范围:1~100。
|
2314
2316
|
# 如果扩容比例为50,那么每轮只会扩容当前作业负载所需的50%数量的节点。
|
2315
2317
|
# @type ScaleOutRatio: Integer
|
@@ -2328,9 +2330,9 @@ module TencentCloud
|
|
2328
2330
|
# @param EnhancedService: 增强服务。通过该参数可以指定是否开启云安全、腾讯云可观测平台等服务。若不指定该参数,则默认开启腾讯云可观测平台、云安全服务、自动化助手服务。
|
2329
2331
|
# @type EnhancedService: :class:`Tencentcloud::Thpc.v20230321.models.EnhancedService`
|
2330
2332
|
|
2331
|
-
attr_accessor :QueueName, :MinSize, :MaxSize, :EnableAutoExpansion, :EnableAutoShrink, :ImageId, :SystemDisk, :DataDisks, :InternetAccessible, :ExpansionNodeConfigs, :DesiredIdleNodeCapacity, :ScaleOutRatio, :ScaleOutNodeThreshold, :MaxNodesPerCycle, :ScaleUpMemRatio, :EnhancedService
|
2333
|
+
attr_accessor :QueueName, :MinSize, :MaxSize, :EnableAutoExpansion, :EnableAutoShrink, :ImageId, :SystemDisk, :DataDisks, :InternetAccessible, :ExpansionNodeConfigs, :DesiredIdleNodeCapacity, :DesiredNodeCount, :ScaleOutRatio, :ScaleOutNodeThreshold, :MaxNodesPerCycle, :ScaleUpMemRatio, :EnhancedService
|
2332
2334
|
|
2333
|
-
def initialize(queuename=nil, minsize=nil, maxsize=nil, enableautoexpansion=nil, enableautoshrink=nil, imageid=nil, systemdisk=nil, datadisks=nil, internetaccessible=nil, expansionnodeconfigs=nil, desiredidlenodecapacity=nil, scaleoutratio=nil, scaleoutnodethreshold=nil, maxnodespercycle=nil, scaleupmemratio=nil, enhancedservice=nil)
|
2335
|
+
def initialize(queuename=nil, minsize=nil, maxsize=nil, enableautoexpansion=nil, enableautoshrink=nil, imageid=nil, systemdisk=nil, datadisks=nil, internetaccessible=nil, expansionnodeconfigs=nil, desiredidlenodecapacity=nil, desirednodecount=nil, scaleoutratio=nil, scaleoutnodethreshold=nil, maxnodespercycle=nil, scaleupmemratio=nil, enhancedservice=nil)
|
2334
2336
|
@QueueName = queuename
|
2335
2337
|
@MinSize = minsize
|
2336
2338
|
@MaxSize = maxsize
|
@@ -2342,6 +2344,7 @@ module TencentCloud
|
|
2342
2344
|
@InternetAccessible = internetaccessible
|
2343
2345
|
@ExpansionNodeConfigs = expansionnodeconfigs
|
2344
2346
|
@DesiredIdleNodeCapacity = desiredidlenodecapacity
|
2347
|
+
@DesiredNodeCount = desirednodecount
|
2345
2348
|
@ScaleOutRatio = scaleoutratio
|
2346
2349
|
@ScaleOutNodeThreshold = scaleoutnodethreshold
|
2347
2350
|
@MaxNodesPerCycle = maxnodespercycle
|
@@ -2381,6 +2384,7 @@ module TencentCloud
|
|
2381
2384
|
end
|
2382
2385
|
end
|
2383
2386
|
@DesiredIdleNodeCapacity = params['DesiredIdleNodeCapacity']
|
2387
|
+
@DesiredNodeCount = params['DesiredNodeCount']
|
2384
2388
|
@ScaleOutRatio = params['ScaleOutRatio']
|
2385
2389
|
@ScaleOutNodeThreshold = params['ScaleOutNodeThreshold']
|
2386
2390
|
@MaxNodesPerCycle = params['MaxNodesPerCycle']
|
@@ -2409,6 +2413,8 @@ module TencentCloud
|
|
2409
2413
|
# @param DesiredIdleNodeCapacity: 队列中期望的空闲节点数量(包含弹性节点和静态节点)。默认值:0。队列中,处于空闲状态的节点小于此值,集群会扩容弹性节点;处于空闲状态的节点大于此值,集群会缩容弹性节点。
|
2410
2414
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2411
2415
|
# @type DesiredIdleNodeCapacity: Integer
|
2416
|
+
# @param DesiredNodeCount: 队列中期望的总节点数。
|
2417
|
+
# @type DesiredNodeCount: Integer
|
2412
2418
|
# @param ScaleOutRatio: 扩容比例。默认值:100。取值范围:1~100。
|
2413
2419
|
# 如果扩容比例为50,那么每轮只会扩容当前作业负载所需的50%数量的节点。
|
2414
2420
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
@@ -2429,9 +2435,9 @@ module TencentCloud
|
|
2429
2435
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2430
2436
|
# @type ScaleUpMemRatio: Integer
|
2431
2437
|
|
2432
|
-
attr_accessor :QueueName, :MinSize, :MaxSize, :EnableAutoExpansion, :EnableAutoShrink, :ExpansionNodeConfigs, :DesiredIdleNodeCapacity, :ScaleOutRatio, :ScaleOutNodeThreshold, :MaxNodesPerCycle, :ScaleUpMemRatio
|
2438
|
+
attr_accessor :QueueName, :MinSize, :MaxSize, :EnableAutoExpansion, :EnableAutoShrink, :ExpansionNodeConfigs, :DesiredIdleNodeCapacity, :DesiredNodeCount, :ScaleOutRatio, :ScaleOutNodeThreshold, :MaxNodesPerCycle, :ScaleUpMemRatio
|
2433
2439
|
|
2434
|
-
def initialize(queuename=nil, minsize=nil, maxsize=nil, enableautoexpansion=nil, enableautoshrink=nil, expansionnodeconfigs=nil, desiredidlenodecapacity=nil, scaleoutratio=nil, scaleoutnodethreshold=nil, maxnodespercycle=nil, scaleupmemratio=nil)
|
2440
|
+
def initialize(queuename=nil, minsize=nil, maxsize=nil, enableautoexpansion=nil, enableautoshrink=nil, expansionnodeconfigs=nil, desiredidlenodecapacity=nil, desirednodecount=nil, scaleoutratio=nil, scaleoutnodethreshold=nil, maxnodespercycle=nil, scaleupmemratio=nil)
|
2435
2441
|
@QueueName = queuename
|
2436
2442
|
@MinSize = minsize
|
2437
2443
|
@MaxSize = maxsize
|
@@ -2439,6 +2445,7 @@ module TencentCloud
|
|
2439
2445
|
@EnableAutoShrink = enableautoshrink
|
2440
2446
|
@ExpansionNodeConfigs = expansionnodeconfigs
|
2441
2447
|
@DesiredIdleNodeCapacity = desiredidlenodecapacity
|
2448
|
+
@DesiredNodeCount = desirednodecount
|
2442
2449
|
@ScaleOutRatio = scaleoutratio
|
2443
2450
|
@ScaleOutNodeThreshold = scaleoutnodethreshold
|
2444
2451
|
@MaxNodesPerCycle = maxnodespercycle
|
@@ -2460,6 +2467,7 @@ module TencentCloud
|
|
2460
2467
|
end
|
2461
2468
|
end
|
2462
2469
|
@DesiredIdleNodeCapacity = params['DesiredIdleNodeCapacity']
|
2470
|
+
@DesiredNodeCount = params['DesiredNodeCount']
|
2463
2471
|
@ScaleOutRatio = params['ScaleOutRatio']
|
2464
2472
|
@ScaleOutNodeThreshold = params['ScaleOutNodeThreshold']
|
2465
2473
|
@MaxNodesPerCycle = params['MaxNodesPerCycle']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-thpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.998
|
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-02-
|
11
|
+
date: 2025-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|