tencentcloud-sdk-thpc 3.0.513 → 3.0.514

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 716010294d7b64a8e0d943a6318fb1035ba688c5
4
- data.tar.gz: 2d8da363567e28531cd50c527ba065e54022342b
3
+ metadata.gz: 9c57eb052fd2a677dc776bdd608b326d583cbcc1
4
+ data.tar.gz: 0b716baec53667fcad7649b3ff46896e40d81cb9
5
5
  SHA512:
6
- metadata.gz: 90d471f05b6e05186402aa44421a7903f36b0f74ee91f3521f50086bcfbf85ae2d78a61f3e262ebe005e1607b20560723924c39a1292b61908f51e63eaa51727
7
- data.tar.gz: e2e2f90c674706affa25619fa38b986d581e04a6321388d51a81e9f61d1076d406ee2bb9a86e5e8240fc2e5efeab17ca30d30bd2b492d839df98eb24f5e9018d
6
+ metadata.gz: e7cf5e2d83e67704e7bb963473d31065c4bc40d5be150ef448d52067aef38456772121b6313fd9eb65a533bd19a44832c29b2f3d6fbdd1de562d1242ecb2d6fa
7
+ data.tar.gz: fb4feb4605922f8227e2b078aa2a8513b2fe072254e5308a0205d3d97650d49cc017d6c794583db609f6af7e86209e78231991fef536d8e50ae79f709f6d8cbf
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.513
1
+ 3.0.514
@@ -2,12 +2,12 @@
2
2
 
3
3
  require 'tencentcloud-sdk-common'
4
4
 
5
- require_relative 'v20220401/client'
6
- require_relative 'v20220401/models'
7
-
8
5
  require_relative 'v20211109/client'
9
6
  require_relative 'v20211109/models'
10
7
 
8
+ require_relative 'v20220401/client'
9
+ require_relative 'v20220401/models'
10
+
11
11
  module TencentCloud
12
12
  module Thpc
13
13
  end
@@ -90,10 +90,9 @@ module TencentCloud
90
90
  # @type SecurityGroupIds: Array
91
91
  # @param ClientToken: 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
92
92
  # @type ClientToken: String
93
- # @param QueueName: 队列名称。不指定则为默认队列。<br><li>SLURM默认队列为:compute。<br>
94
- # <li>SGE默认队列为:all.q。<br>
93
+ # @param QueueName: 队列名称。不指定则为默认队列。<li>SLURM默认队列为:compute。<li>SGE默认队列为:all.q。
95
94
  # @type QueueName: String
96
- # @param NodeRole: 添加节点类型。默认值:Compute<br><li>Compute:计算节点。<br><li>Login:登录节点。
95
+ # @param NodeRole: 添加节点角色。默认值:Compute<br><li>Compute:计算节点。<br><li>Login:登录节点。
97
96
  # @type NodeRole: String
98
97
  # @param DryRun: 是否只预检此次请求。
99
98
  # true:发送检查请求,不会创建实例。检查项包括是否填写了必需参数,请求格式,业务限制和云服务器库存。
@@ -101,10 +100,12 @@ module TencentCloud
101
100
  # 如果检查通过,则返回RequestId.
102
101
  # false(默认):发送正常请求,通过检查后直接创建实例
103
102
  # @type DryRun: Boolean
103
+ # @param NodeType: 添加节点类型。默认取值:STATIC。<li>STATIC:静态节点,不会参与弹性伸缩流程。<li>DYNAMIC:弹性节点,会被弹性缩容的节点。管控节点和登录节点不支持此参数。
104
+ # @type NodeType: String
104
105
 
105
- attr_accessor :Placement, :ClusterId, :VirtualPrivateCloud, :Count, :ImageId, :InstanceChargeType, :InstanceChargePrepaid, :InstanceType, :SystemDisk, :DataDisks, :InternetAccessible, :InstanceName, :LoginSettings, :SecurityGroupIds, :ClientToken, :QueueName, :NodeRole, :DryRun
106
+ attr_accessor :Placement, :ClusterId, :VirtualPrivateCloud, :Count, :ImageId, :InstanceChargeType, :InstanceChargePrepaid, :InstanceType, :SystemDisk, :DataDisks, :InternetAccessible, :InstanceName, :LoginSettings, :SecurityGroupIds, :ClientToken, :QueueName, :NodeRole, :DryRun, :NodeType
106
107
 
107
- def initialize(placement=nil, clusterid=nil, virtualprivatecloud=nil, count=nil, imageid=nil, instancechargetype=nil, instancechargeprepaid=nil, instancetype=nil, systemdisk=nil, datadisks=nil, internetaccessible=nil, instancename=nil, loginsettings=nil, securitygroupids=nil, clienttoken=nil, queuename=nil, noderole=nil, dryrun=nil)
108
+ def initialize(placement=nil, clusterid=nil, virtualprivatecloud=nil, count=nil, imageid=nil, instancechargetype=nil, instancechargeprepaid=nil, instancetype=nil, systemdisk=nil, datadisks=nil, internetaccessible=nil, instancename=nil, loginsettings=nil, securitygroupids=nil, clienttoken=nil, queuename=nil, noderole=nil, dryrun=nil, nodetype=nil)
108
109
  @Placement = placement
109
110
  @ClusterId = clusterid
110
111
  @VirtualPrivateCloud = virtualprivatecloud
@@ -123,6 +124,7 @@ module TencentCloud
123
124
  @QueueName = queuename
124
125
  @NodeRole = noderole
125
126
  @DryRun = dryrun
127
+ @NodeType = nodetype
126
128
  end
127
129
 
128
130
  def deserialize(params)
@@ -173,6 +175,7 @@ module TencentCloud
173
175
  @QueueName = params['QueueName']
174
176
  @NodeRole = params['NodeRole']
175
177
  @DryRun = params['DryRun']
178
+ @NodeType = params['NodeType']
176
179
  end
177
180
  end
178
181
 
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.513
4
+ version: 3.0.514
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-02-21 00:00:00.000000000 Z
11
+ date: 2023-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,11 +33,11 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20211109/client.rb
36
+ - lib/tencentcloud-sdk-thpc.rb
37
37
  - lib/v20211109/models.rb
38
- - lib/v20220401/client.rb
38
+ - lib/v20211109/client.rb
39
39
  - lib/v20220401/models.rb
40
- - lib/tencentcloud-sdk-thpc.rb
40
+ - lib/v20220401/client.rb
41
41
  - lib/VERSION
42
42
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
43
43
  licenses: